Skip to content

Commit

Permalink
feat(deps): PostgreSQL 17 compatibility
Browse files Browse the repository at this point in the history
The version 17 client is needed to dump version 17 server.
  • Loading branch information
nijel committed Sep 27, 2024
1 parent 020e0f9 commit 0ee1224
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,7 @@ RUN \
&& echo "deb http://apt.postgresql.org/pub/repos/apt bookworm-pgdg main" > /etc/apt/sources.list.d/pgdg.list \
&& curl -L https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
&& apt-get update \
&& apt-get install --no-install-recommends -y \
postgresql-client-16 \
&& apt-get install --no-install-recommends -y postgresql-client-17 \
&& pip install --no-cache-dir --upgrade $(grep -E '^(uv)==' /app/src/requirements.txt) \
&& uv venv /app/venv \
&& . /app/venv/bin/activate \
Expand Down

0 comments on commit 0ee1224

Please sign in to comment.