9 lines
261 B
Text
9 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;"]
|