2019-05-06 18:26:50 +02:00
|
|
|
# First stage to build assets
|
2021-07-05 15:50:49 +02:00
|
|
|
ARG DISTRO=alpine:3.14
|
2019-08-23 21:24:21 +02:00
|
|
|
ARG ARCH=""
|
2021-08-13 14:06:46 +02:00
|
|
|
|
2021-08-13 15:12:33 +02:00
|
|
|
FROM ${ARCH}node:16 as assets
|
2021-08-03 13:58:54 +02:00
|
|
|
COPY --from=balenalib/rpi-alpine:3.14 /usr/bin/qemu-arm-static /usr/bin/qemu-arm-static
|
2019-05-06 18:26:50 +02:00
|
|
|
|
|
|
|
COPY package.json ./
|
|
|
|
RUN npm install
|
|
|
|
|
|
|
|
COPY ./webpack.config.js ./
|
|
|
|
COPY ./assets ./assets
|
|
|
|
RUN mkdir static \
|
|
|
|
&& ./node_modules/.bin/webpack-cli
|
|
|
|
|
|
|
|
|
|
|
|
# Actual application
|
2019-08-21 18:24:30 +02:00
|
|
|
FROM $DISTRO
|
2018-10-31 19:17:23 +02:00
|
|
|
# python3 shared with most images
|
|
|
|
RUN apk add --no-cache \
|
2019-02-06 22:01:02 +02:00
|
|
|
python3 py3-pip git bash \
|
2018-10-31 19:17:23 +02:00
|
|
|
&& pip3 install --upgrade pip
|
2019-05-06 18:26:50 +02:00
|
|
|
|
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
|
2021-08-03 13:44:56 +02:00
|
|
|
RUN apk add --no-cache openssl curl postgresql-libs mariadb-connector-c \
|
2019-07-09 11:21:44 +02:00
|
|
|
&& apk add --no-cache --virtual build-dep \
|
2021-08-03 13:46:47 +02:00
|
|
|
openssl-dev libffi-dev python3-dev build-base postgresql-dev mariadb-connector-c-dev cargo \
|
2019-07-09 11:21:44 +02:00
|
|
|
&& pip3 install -r requirements.txt \
|
|
|
|
&& apk del --no-cache build-dep
|
2016-11-09 17:18:16 +02:00
|
|
|
|
2019-05-06 18:26:50 +02:00
|
|
|
COPY --from=assets static ./mailu/ui/static
|
2016-11-09 17:46:38 +02:00
|
|
|
COPY mailu ./mailu
|
|
|
|
COPY migrations ./migrations
|
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-12-20 17:47:15 +02:00
|
|
|
VOLUME ["/data","/dkim"]
|
2018-11-08 22:29:11 +02:00
|
|
|
ENV FLASK_APP mailu
|
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
|
|
|
|
2020-06-15 17:32:56 +02:00
|
|
|
HEALTHCHECK CMD curl -f -L http://localhost/ui/login?next=ui.index || exit 1
|