1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-14 10:53:30 +02:00
Mailu/core/admin/Dockerfile

33 lines
983 B
Docker
Raw Normal View History

ARG ALPINE_VERSION
FROM alpine:$ALPINE_VERSION
# python3 shared with most images
RUN apk add --no-cache \
python3 py3-pip git bash \
&& pip3 install --upgrade pip
2019-06-03 00:55:09 +02:00
# Shared layer between admin, rspamd, postfix, dovecot, unbound and nginx
2019-06-24 20:45:47 +02:00
RUN pip3 install git+https://github.com/Mailu/MailuStart.git#egg=mailustart
# Image specific layers under this line
RUN mkdir -p /app
WORKDIR /app
COPY requirements-prod.txt requirements.txt
2019-06-03 00:55:09 +02:00
RUN apk add --no-cache openssl curl postgresql-libs mariadb-connector-c \
&& apk add --no-cache --virtual build-dep \
2019-06-03 00:55:09 +02:00
openssl-dev libffi-dev python3-dev build-base postgresql-dev mariadb-connector-c-dev \
&& pip3 install -r requirements.txt \
2018-10-11 02:57:13 +02:00
&& apk del --no-cache build-dep
COPY mailu ./mailu
COPY migrations ./migrations
2018-10-22 17:01:59 +02:00
COPY start.py /start.py
RUN pybabel compile -d mailu/translations
EXPOSE 80/tcp
2018-12-20 17:47:15 +02:00
VOLUME ["/data","/dkim"]
ENV FLASK_APP mailu
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/login?next=ui.index || exit 1