We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 679d2b0 commit b2ab970Copy full SHA for b2ab970
1 file changed
workspace/Dockerfile
@@ -766,7 +766,11 @@ ARG INSTALL_PG_CLIENT=false
766
767
RUN if [ ${INSTALL_PG_CLIENT} = true ]; then \
768
# Install the pgsql client
769
- apt-get -y install postgresql-client \
+ apt-get install wget \
770
+ && add-apt-repository "deb http://apt.postgresql.org/pub/repos/apt/ xenial-pgdg main" \
771
+ && wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
772
+ && apt-get update \
773
+ && apt-get -y install postgresql-client-10 \
774
;fi
775
776
###########################################################################
0 commit comments