Files
OSIT-Mailman3/core/Dockerfile
2017-04-05 20:19:18 -07:00

26 lines
823 B
Docker

FROM python:3.5
MAINTAINER Abhilash Raj
ENV DEBIAN_FRONTEND=noninteractive
# Install the latest master branch of the mailman directly
# from the Gitlab.
RUN apt-get update && apt-get install -y postgresql-client wget \
&& wget -O mailman.zip https://gitlab.com/mailman/mailman/repository/archive.zip?ref=master \
&& wget -O mailman_hyperkitty.zip https://gitlab.com/mailman/mailman-hyperkitty/repository/archive.zip?ref=master \
&& pip install mailman.zip mailman_hyperkitty.zip ipython psycopg2 \
&& rm mailman.zip mailman_hyperkitty.zip
ADD assets/run.sh /opt/run.sh
# Pidproxy is our sort-of process watcher that sends any
# signal that it receives to the mailman's master process.
ADD assets/pidproxy.py /opt/pidproxy.py
# Change the working directory.
WORKDIR /opt/mailman
EXPOSE 8001
CMD ["/opt/run.sh"]