mirror of
https://github.com/Mailu/Mailu.git
synced 2025-02-21 19:19:39 +02:00
13 lines
273 B
Docker
13 lines
273 B
Docker
FROM nginx:alpine
|
|
|
|
RUN apk add --no-cache nginx-mod-http-lua openssl
|
|
|
|
COPY nginx.conf.default /etc/nginx/nginx.conf.default
|
|
COPY nginx.conf.fallback /etc/nginx/nginx.conf.fallback
|
|
COPY http.d /etc/nginx/
|
|
COPY extra.d /etc/nginx/
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
CMD ["/start.sh"]
|