esameits24-26frontend/dockerfile/Dockerfile.runtime
AV77web a2ffd71452
Some checks failed
Deploy to VPS / build (push) Failing after 38s
Deploy to VPS / deploy (push) Has been skipped
modifiche a Dockerfile e inserito dockerfile.runtime
2026-07-14 16:15:32 +02:00

8 lines
261 B
Text

# Immagine di produzione: serve la cartella dist già compilata in CI (nessun npm run build sulla VPS).
FROM nginx:alpine
COPY dockerfile/nginx.conf /etc/nginx/conf.d/default.conf
COPY dist /usr/share/nginx/html
EXPOSE 3010
CMD ["nginx", "-g", "daemon off;"]