Add psql client to check when postgres is up.

This commit is contained in:
Abhilash Raj
2017-05-24 15:56:54 -07:00
committed by Abhilash Raj
parent f8126d90ba
commit d24bac22fe

View File

@@ -6,7 +6,7 @@ MAINTAINER Abhilash Raj
# from the Gitlab.
RUN apk update \
&& apk add --virtual build-deps gcc python3-dev musl-dev wget \
&& apk add postgresql-dev bash su-exec \
&& apk add postgresql-dev bash su-exec postgresql-client \
&& wget -O mailman_hyperkitty.zip https://gitlab.com/mailman/mailman-hyperkitty/repository/archive.zip?ref=master \
&& pip install mailman_hyperkitty.zip psycopg2 mailman==3.1.0rc1 \
&& rm mailman_hyperkitty.zip \