From a9a99fefeb192190b26dd14e6d496b0bddf3ab90 Mon Sep 17 00:00:00 2001 From: Flavio Martins Date: Sun, 17 Mar 2024 10:39:59 +0000 Subject: [PATCH] Update PostgreSQL Python drivers and extras --- notebook/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/notebook/Dockerfile b/notebook/Dockerfile index 7cadf19..df1c40f 100644 --- a/notebook/Dockerfile +++ b/notebook/Dockerfile @@ -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}" && \