2017-08-26 20:02:18 +02:00
|
|
|
FROM python:3-alpine
|
2016-02-24 08:44:49 +02:00
|
|
|
|
|
|
|
RUN mkdir -p /app
|
|
|
|
WORKDIR /app
|
|
|
|
|
2017-09-10 15:37:09 +02:00
|
|
|
COPY requirements-prod.txt requirements.txt
|
2018-10-16 21:38:12 +02:00
|
|
|
RUN apk add --no-cache openssl curl \
|
2018-05-30 00:28:44 +02:00
|
|
|
&& apk add --no-cache --virtual build-dep openssl-dev libffi-dev python-dev build-base \
|
2017-09-18 21:34:28 +02:00
|
|
|
&& pip install -r requirements.txt \
|
2018-10-11 02:57:13 +02:00
|
|
|
&& apk del --no-cache build-dep
|
2016-11-09 17:18:16 +02:00
|
|
|
|
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
|
|
|
|
2018-04-21 14:46:01 +02:00
|
|
|
EXPOSE 80/tcp
|
2018-09-28 17:42:10 +02:00
|
|
|
VOLUME ["/data"]
|
2018-04-21 14:46:01 +02:00
|
|
|
|
2016-06-25 14:11:34 +02:00
|
|
|
CMD ["/start.sh"]
|
2018-10-16 21:38:12 +02:00
|
|
|
|
|
|
|
HEALTHCHECK CMD curl -f -L http://localhost/ui || exit 1
|