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

47 lines
1.1 KiB
Docker
Raw Normal View History

# First stage to build assets
2020-06-15 17:32:56 +02:00
ARG DISTRO=alpine:3.12
ARG ARCH=""
FROM ${ARCH}node:15 as assets
COPY --from=balenalib/rpi-alpine:3.10 /usr/bin/qemu-arm-static /usr/bin/qemu-arm-static
COPY package.json ./
RUN npm install
COPY ./webpack.config.js ./
COPY ./assets ./assets
RUN mkdir static \
&& ./node_modules/.bin/webpack-cli
# Actual application
FROM $DISTRO
# python3 shared with most images
RUN apk add --no-cache \
python3 py3-pip git bash \
&& pip3 install --upgrade pip
RUN mkdir -p /app
WORKDIR /app
COPY requirements-prod.txt requirements.txt
2019-07-09 11:21:44 +02:00
RUN 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 \
&& pip3 install -r requirements.txt \
&& apk del --no-cache build-dep
COPY --from=assets static ./mailu/ui/static
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
2020-06-15 17:32:56 +02:00
HEALTHCHECK CMD curl -f -L http://localhost/ui/login?next=ui.index || exit 1