2016-02-24 08:44:49 +02:00
|
|
|
FROM python:3
|
|
|
|
|
|
|
|
RUN mkdir -p /app
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN pip install -r requirements.txt
|
2016-11-09 17:18:16 +02:00
|
|
|
|
|
|
|
# Temporarily install certbot from source while waiting for 0.10
|
|
|
|
RUN git clone https://github.com/certbot/certbot /certbot \
|
|
|
|
&& cd /certbot \
|
|
|
|
&& pip install -e ./acme \
|
|
|
|
&& pip install -e ./
|
|
|
|
|
2016-11-09 17:46:38 +02:00
|
|
|
COPY mailu ./mailu
|
|
|
|
COPY migrations ./migrations
|
|
|
|
COPY manage.py .
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
|
2016-10-29 13:42:39 +02:00
|
|
|
RUN pybabel compile -d mailu/translations
|
2016-02-24 08:44:49 +02:00
|
|
|
|
2016-06-25 14:11:34 +02:00
|
|
|
CMD ["/start.sh"]
|