27 lines
632 B
Docker
27 lines
632 B
Docker
# Étape 1 : build Angular en mode production
|
|
FROM node:20 AS build
|
|
|
|
WORKDIR /app
|
|
|
|
# Install dépendances
|
|
COPY package*.json ./
|
|
RUN npm install
|
|
|
|
# Copie du code
|
|
COPY . .
|
|
|
|
# Build Angular en prod (utilise environment.prod.ts + fileReplacements)
|
|
RUN npm run build -- --configuration production
|
|
|
|
# Étape 2 : image finale Nginx pour servir les fichiers statiques
|
|
FROM nginx:alpine
|
|
|
|
# Copie du build Angular vers Nginx
|
|
COPY --from=build /app/dist/client /usr/share/nginx/html
|
|
|
|
# Optionnel : conf Nginx custom (SPA, 404 → index.html, etc.)
|
|
# COPY nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"] |