mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-14 10:53:30 +02:00
c375fede5b
(cherry picked from commit 4e212e3d60
)
11 lines
224 B
Docker
11 lines
224 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 start.sh /start.sh
|
|
|
|
CMD ["/start.sh"]
|