mirror of
https://github.com/Mailu/Mailu.git
synced 2025-02-01 12:57:49 +02:00
c375fede5b
(cherry picked from commit 4e212e3d6072b918b50be1d51f30aa93dc5dcda4)
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"]
|