Skip to content

Commit

Permalink
Stop installling libpq-dev in Docker image
Browse files Browse the repository at this point in the history
This was required for psycopg2, which is no longer used since the
queuing system was converted to arq. asynciopg is now used everywhere.
  • Loading branch information
rra committed Jul 8, 2024
1 parent 2d24fdc commit 1038620
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This Dockerfile has four stages:
# This Dockerfile has three stages:
#
# base-image
# Updates the base Python image with security patches and common system
Expand Down
4 changes: 2 additions & 2 deletions scripts/install-base-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ apt-get update
# Install security updates.
apt-get -y upgrade

# Install dependencies required at runtime. libpq-dev is required by psycopg2.
apt-get -y install --no-install-recommends libpq-dev
# Install dependencies required at runtime (none currently).
#apt-get -y install --no-install-recommends

# Delete cached files we don't need anymore.
apt-get clean
Expand Down

0 comments on commit 1038620

Please sign in to comment.