Skip to content

Commit

Permalink
fix(docker): Add missing psql dependency for python-builder
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Jun 4, 2024
1 parent b4e55ff commit c8c2066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/gl-testing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
#
# Later, we'll copy this venv to our project
FROM ubuntu:20.04 as python-builder
RUN apt update && apt install -qqy curl python3 python3-pip python3-venv
RUN apt update && apt install -qqy curl python3 python3-pip python3-venv libpq-dev

# Create a python-venv that will include all dependencies
ENV PATH=/tmp/venv/bin:$PATH
Expand Down

0 comments on commit c8c2066

Please sign in to comment.