Fix installing PG client

This commit is contained in:
desaroger 2018-02-23 21:27:04 +01:00
parent 16f88029e0
commit d23c553313

View File

@ -67,6 +67,9 @@ RUN if [ ${INSTALL_PGSQL} = true ]; then \
ARG INSTALL_PG_CLIENT=false ARG INSTALL_PG_CLIENT=false
RUN if [ ${INSTALL_PG_CLIENT} = true ]; then \ RUN if [ ${INSTALL_PG_CLIENT} = true ]; then \
# Create folders if not exists (https://github.com/tianon/docker-brew-debian/issues/65)
mkdir -p /usr/share/man/man1 && \
mkdir -p /usr/share/man/man7 && \
# Install the pgsql client # Install the pgsql client
apt-get update -yqq && \ apt-get update -yqq && \
apt-get install -y postgresql-client \ apt-get install -y postgresql-client \