2018-10-31 19:17:23 +02:00
|
|
|
FROM alpine:3.8
|
|
|
|
# python3 shared with most images
|
|
|
|
RUN apk add --no-cache \
|
|
|
|
python3 py3-pip \
|
|
|
|
&& pip3 install --upgrade pip
|
|
|
|
# Image specific layers under this line
|
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-10-31 19:17:23 +02:00
|
|
|
&& apk add --no-cache --virtual build-dep openssl-dev libffi-dev python3-dev build-base \
|
|
|
|
&& pip3 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 .
|
2018-10-22 17:01:59 +02:00
|
|
|
COPY start.py /start.py
|
2016-11-09 17:46:38 +02:00
|
|
|
|
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
|
|
|
|
2018-10-23 10:58:36 +02:00
|
|
|
CMD /start.py
|
2018-10-16 21:38:12 +02:00
|
|
|
|
|
|
|
HEALTHCHECK CMD curl -f -L http://localhost/ui || exit 1
|