Add polars to Dockerfile

This commit is contained in:
Diego Ripley
2025-06-17 21:19:42 +00:00
parent ea603f2914
commit f85ce79ff2
+3 -2
View File
@@ -13,7 +13,8 @@ RUN apt-get install -y neovim \
git \
aria2 \
postgresql-client \
zip
zip \
jq
# tippecanoe
RUN git clone https://github.com/felt/tippecanoe.git \
@@ -29,7 +30,7 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR="/usr/local/
# Create virtual environment and install Python packages
RUN uv venv ~/.venv \
&& cd ~ \
&& uv pip install 'geopandas[all]' duckdb psycopg2-binary jupyterlab lonboard click stats-can openpyxl ordered-set sqlfluff buckaroo jenkspy
&& uv pip install 'geopandas[all]' duckdb psycopg2-binary jupyterlab lonboard click stats-can openpyxl ordered-set sqlfluff buckaroo jenkspy 'polars[all]'
# Bash Kernel
RUN cd ~ \