Files
workavia-calendar-front/Dockerfile
Benoit TELLIER 1e8168725e Docker packaging
2025-07-08 15:43:50 +02:00

11 lines
286 B
Docker

FROM nginx:alpine
RUN apk add gzip
COPY nginx.conf /etc/nginx
COPY dist /usr/share/nginx/html
# Record the exposed port
EXPOSE 80
# Before stating NGinx, re-zip all the content to ensure customizations are propagated
CMD gzip -k -r -f /usr/share/nginx/html/ && nginx -g 'daemon off;'