Skip to content

Commit

Permalink
Update Dockerfile to install DuckDB SQLAlchemy driver
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviomartins committed Jul 1, 2024
1 parent b764be3 commit a044f9f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,18 @@ RUN mamba install --yes \
# Install DuckDB
RUN mamba install --yes \
'duckdb-cli' \
'duckdb-engine' \
'python-duckdb' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"

# Install DuckDB SQLAlchemy driver
RUN mamba install --yes \
'duckdb-engine' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"

# Install JupySQL
RUN mamba install --yes \
'jupysql' && \
Expand Down

0 comments on commit a044f9f

Please sign in to comment.