Update client/Dockerfile
This commit is contained in:
@@ -16,12 +16,14 @@ RUN npm run build -- --configuration production
|
|||||||
# Étape 2 : image finale Nginx pour servir les fichiers statiques
|
# Étape 2 : image finale Nginx pour servir les fichiers statiques
|
||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
|
|
||||||
|
# Nettoyer la page par défaut Nginx
|
||||||
|
RUN rm -rf /usr/share/nginx/html/*
|
||||||
|
|
||||||
# Copie du build Angular vers Nginx
|
# Copie du build Angular vers Nginx
|
||||||
COPY --from=build /app/dist/client /usr/share/nginx/html
|
COPY --from=build /app/dist/client /usr/share/nginx/html
|
||||||
|
|
||||||
# Optionnel : conf Nginx custom (SPA, 404 → index.html, etc.)
|
# Conf Nginx custom pour SPA
|
||||||
# COPY nginx.conf /etc/nginx/conf.d/default.conf
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||||
|
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
|
||||||
CMD ["nginx", "-g", "daemon off;"]
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
Reference in New Issue
Block a user