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

25 lines
504 B
Docker
Raw Normal View History

ARG DISTRO=alpine:3.14.5
FROM $DISTRO
ARG VERSION
ENV TZ Etc/UTC
LABEL version=$VERSION
2018-04-22 12:02:59 +02:00
RUN mkdir -p /app
WORKDIR /app
COPY requirements.txt requirements.txt
RUN apk add --no-cache curl python3 py3-pip \
&& pip3 install -r requirements.txt
2018-04-22 12:02:59 +02:00
COPY server.py ./server.py
COPY main.py ./main.py
COPY flavors /data/flavors
COPY templates /data/templates
2018-11-07 16:41:11 +02:00
COPY static ./static
2018-04-22 12:02:59 +02:00
EXPOSE 80/tcp
CMD gunicorn -w 4 -b :80 --access-logfile - --error-logfile - --preload main:app
2021-12-22 11:19:44 +02:00
RUN echo $VERSION >> /version