mirror of
https://github.com/Mailu/Mailu.git
synced 2025-04-19 12:02:33 +02: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"]
|