Add pymysql to the Core container to interact with MySQL db. (#80)

Add pymysql to the Core container to interact with MySQL db.
This commit is contained in:
Abhilash Raj
2017-07-20 15:31:10 -07:00
committed by GitHub
parent 43731112e7
commit 5fb1a19d18

View File

@@ -10,6 +10,7 @@ RUN apk update \
&& apk add --virtual build-deps gcc python3-dev musl-dev \
&& apk add postgresql-dev bash su-exec postgresql-client \
&& pip install psycopg2 mailman==3.1.0 mailman-hyperkitty==1.1.0 \
&& pip install pymysql \
&& apk del build-deps \
&& adduser -S mailman \
&& chmod a+x /opt/run.sh
@@ -23,4 +24,4 @@ EXPOSE 8001 8024
ENV MAILMAN_CONFIG_FILE /etc/mailman.cfg
ENTRYPOINT ["/opt/run.sh"]
CMD ["/usr/local/bin/master"]
CMD ["/usr/local/bin/master"]