2019-05-06 18:26:50 +02:00
|
|
|
# First stage to build assets
|
2021-09-01 18:56:44 +02:00
|
|
|
ARG DISTRO=alpine:3.14.2
|
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
|
2019-05-06 18:26:50 +02:00
|
|
|
|
|
|
|
COPY package.json ./
|
2021-09-02 22:49:36 +02:00
|
|
|
RUN set -eu \
|
|
|
|
&& npm config set update-notifier false \
|
|
|
|
&& npm install --no-fund
|
2019-05-06 18:26:50 +02:00
|
|
|
|
2021-09-02 22:49:36 +02:00
|
|
|
COPY webpack.config.js ./
|
|
|
|
COPY assets ./assets
|
|
|
|
RUN set -eu \
|
2021-09-06 08:41:49 +02:00
|
|
|
&& sed -i 's/#007bff/#55a5d9/' node_modules/admin-lte/build/scss/_bootstrap-variables.scss \
|
2021-09-02 22:49:36 +02:00
|
|
|
&& for l in ca da de:de_de en:en-gb es:es_es eu fr:fr_fr he hu is it:it_it ja nb_NO:no_nb nl:nl_nl pl pt:pt_pt ru sv:sv_se zh_CN:zh; do \
|
|
|
|
cp node_modules/datatables.net-plugins/i18n/${l#*:}.json assets/${l%:*}.json; \
|
|
|
|
done \
|
|
|
|
&& node_modules/.bin/webpack-cli --color
|
2019-05-06 18:26:50 +02:00
|
|
|
|
|
|
|
|
|
|
|
# Actual application
|
2019-08-21 18:24:30 +02:00
|
|
|
FROM $DISTRO
|
2021-09-02 22:49:36 +02:00
|
|
|
COPY --from=balenalib/rpi-alpine:3.14 /usr/bin/qemu-arm-static /usr/bin/qemu-arm-static
|
|
|
|
|
2018-10-31 19:17:23 +02:00
|
|
|
# python3 shared with most images
|
2021-09-02 22:49:36 +02:00
|
|
|
RUN set -eu \
|
|
|
|
&& apk add --no-cache python3 py3-pip git bash \
|
|
|
|
&& 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-09-02 22:49:36 +02:00
|
|
|
RUN set -eu \
|
2021-09-09 13:22:15 +02:00
|
|
|
&& apk add --no-cache libressl curl postgresql-libs mariadb-connector-c \
|
|
|
|
&& apk add --no-cache --virtual build-dep libressl-dev libffi-dev python3-dev build-base postgresql-dev mariadb-connector-c-dev cargo \
|
2021-09-02 22:49:36 +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
|