mirror of
https://github.com/optim-enterprises-bv/Mailu.git
synced 2025-11-01 10:37:49 +00:00
10 lines
159 B
Docker
10 lines
159 B
Docker
FROM nginx:alpine
|
|
|
|
RUN apk add --no-cache nginx-lua openssl
|
|
|
|
COPY nginx.conf.default /etc/nginx/nginx.conf.default
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
CMD ["/start.sh"]
|