2eme commit
Some checks failed
Angular Docker CI/CD / deploy (push) Failing after 4m27s

This commit is contained in:
faviem
2026-04-01 23:57:38 +01:00
parent de72e91ccc
commit 02b6b30cd0
2 changed files with 24 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
# ==============================
# 1⃣ Build Angular (Node)
# ==============================
FROM node:18-alpine AS build
FROM node:18-alpine AS compile
WORKDIR /app
@@ -24,16 +24,16 @@ RUN node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng build --co
# ==============================
# 2⃣ Serveur Nginx
# ==============================
FROM nginx:latest
FROM nginx:latest as build
# Supprimer config par défaut
RUN rm -rf /usr/share/nginx/html/*
COPY --from=build /app/dist/infocad-back-office/ /usr/share/nginx/html
COPY --from=compile /app/dist/infocad-back-office/ /usr/share/nginx/html
COPY --from=build /app/nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=compile /app/nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=build /app/.htaccess /usr/share/nginx/html
COPY --from=compile /app/.htaccess /usr/share/nginx/html
RUN chmod -R 777 /usr/share/nginx/html