Skip to content

Commit

Permalink
Update PostgreSQL Python drivers and extras
Browse files Browse the repository at this point in the history
  • Loading branch information
flaviomartins committed Mar 17, 2024
1 parent cb479a3 commit a9a99fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions notebook/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,17 +28,17 @@ RUN apt-get update --yes && \

USER ${NB_UID}

# Install pgcli
# Install PostgreSQL Python drivers
RUN mamba install --yes \
'pgcli' && \
'psycopg' \
'psycopg-c' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
fix-permissions "/home/${NB_USER}"

# Install PostgreSQL Python drivers v3
# Install PostgreSQL Python extras
RUN mamba install --yes \
'psycopg' \
'psycopg-c' \
'pgcli' \
'psycopg-pool' && \
mamba clean --all -f -y && \
fix-permissions "${CONDA_DIR}" && \
Expand Down

0 comments on commit a9a99fe

Please sign in to comment.