chore: embed nginx config in Dockerfile

This commit is contained in:
Julien Calixte
2026-03-21 21:47:58 +01:00
parent c42600c570
commit 838082d00b
2 changed files with 28 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ RUN pnpm run build
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]