2019-05-06 18:26:50 +02:00
|
|
|
# First stage to build assets
|
2022-03-30 11:08:28 +02:00
|
|
|
ARG DISTRO=alpine:3.14.5
|
2021-08-13 14:06:46 +02:00
|
|
|
|
2022-07-14 14:00:06 +02:00
|
|
|
FROM node:16-alpine3.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 \
|
2022-03-18 21:53:46 +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; do \
|
2021-09-02 22:49:36 +02:00
|
|
|
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-11-17 22:00:04 +02:00
|
|
|
ARG VERSION
|
2021-09-02 22:49:36 +02:00
|
|
|
|
2021-11-04 15:22:12 +02:00
|
|
|
ENV TZ Etc/UTC
|
|
|
|
|
2021-11-17 22:00:04 +02:00
|
|
|
LABEL version=$VERSION
|
|
|
|
|
2018-10-31 19:17:23 +02:00
|
|
|
# python3 shared with most images
|
2021-09-02 22:49:36 +02:00
|
|
|
RUN set -eu \
|
2021-11-07 22:25:08 +02:00
|
|
|
&& apk add --no-cache python3 py3-pip py3-wheel git bash tzdata \
|
2021-09-02 22:49:36 +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-09-02 22:49:36 +02:00
|
|
|
RUN set -eu \
|
2022-08-19 19:32:42 +02:00
|
|
|
&& apk add --no-cache libressl curl postgresql-libs mariadb-connector-c \
|
2022-08-31 13:44:54 +02:00
|
|
|
&& pip install --no-cache-dir -r requirements.txt --only-binary=:all: --no-binary=Flask-bootstrap,PyYAML,SQLAlchemy \
|
2022-08-19 19:32:42 +02:00
|
|
|
|| ( apk add --no-cache --virtual build-dep libressl-dev libffi-dev python3-dev build-base postgresql-dev mariadb-connector-c-dev cargo \
|
2022-08-19 19:23:29 +02:00
|
|
|
&& pip install --upgrade pip \
|
2021-11-02 14:32:12 +02:00
|
|
|
&& pip install -r requirements.txt \
|
2022-08-19 18:47:33 +02:00
|
|
|
&& apk del --no-cache build-dep )
|
2016-11-09 17:18:16 +02:00
|
|
|
|
2021-10-27 20:36:50 +02:00
|
|
|
COPY --from=assets static ./mailu/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
|
2021-11-02 16:55:20 +02:00
|
|
|
COPY audit.py /audit.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
|
|
|
|
2021-10-25 19:43:53 +02:00
|
|
|
HEALTHCHECK CMD curl -f -L http://localhost/sso/login?next=ui.index || exit 1
|
2022-03-18 21:53:46 +02:00
|
|
|
RUN echo $VERSION >> /version
|