2025-02-06 14:16:55 +00:00
|
|
|
FROM alpine AS builder
|
|
|
|
|
|
|
|
|
|
COPY ./dist /dist
|
|
|
|
|
|
|
|
|
|
# Compress assets to work with nginx-gzip-static-module
|
|
|
|
|
WORKDIR /dist/assets
|
|
|
|
|
RUN gzip -k ../index.html *.js *.map *.css *.wasm *-app-*.json
|
|
|
|
|
|
2025-06-06 12:04:57 -04:00
|
|
|
FROM nginxinc/nginx-unprivileged:alpine-slim
|
2021-12-20 16:58:37 +00:00
|
|
|
|
2025-02-06 14:16:55 +00:00
|
|
|
COPY --from=builder ./dist /app
|
|
|
|
|
|
2023-01-03 10:48:48 +00:00
|
|
|
COPY config/nginx.conf /etc/nginx/conf.d/default.conf
|