mirror of
https://github.com/Mailu/Mailu.git
synced 2025-02-21 19:19:39 +02:00
10 lines
244 B
Docker
10 lines
244 B
Docker
FROM alpine:edge
|
|
|
|
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
|
|
&& apk add --no-cache nginx nginx-mod-mail py-setuptools jinja2-cli@testing
|
|
|
|
COPY conf /conf
|
|
COPY start.sh /start.sh
|
|
|
|
CMD /start.sh
|