mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
11 lines
240 B
Docker
11 lines
240 B
Docker
FROM nginx:alpine
|
|
|
|
RUN apk add --update nginx-lua openssl && rm -rf /var/cache/apk/*
|
|
|
|
COPY nginx.conf.default /etc/nginx/nginx.conf.default
|
|
COPY nginx.conf.fallback /etc/nginx/nginx.conf.fallback
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
CMD ["/start.sh"]
|