mirror of
https://github.com/Mailu/Mailu.git
synced 2025-04-13 11:40:41 +02:00
11 lines
216 B
Docker
11 lines
216 B
Docker
FROM nginx:alpine
|
|
|
|
RUN apk add --update nginx-lua && rm -rf /var/cache/apk/*
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY nginx.conf.fallback /etc/nginx/nginx.conf.fallback
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
CMD ["/start.sh"]
|