This commit is contained in:
@@ -12,14 +12,30 @@ jobs:
|
|||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
# 🔹 Build image
|
||||||
- name: Build Docker image
|
- name: Build Docker image
|
||||||
run: docker build -t front-fiscad .
|
run: docker build -t front-fiscad:latest .
|
||||||
|
|
||||||
|
# 🔹 Stop ancien container
|
||||||
- name: Stop old container
|
- name: Stop old container
|
||||||
run: |
|
run: |
|
||||||
docker stop front-fiscad || true
|
docker stop front-fiscad || true
|
||||||
docker rmi front-fiscad || true
|
docker rm front-fiscad || true
|
||||||
|
|
||||||
|
# 🔹 Supprimer ancienne image (optionnel mais propre)
|
||||||
|
- name: Remove old image
|
||||||
|
run: |
|
||||||
|
docker image prune -f
|
||||||
|
|
||||||
|
# 🔹 Lancer nouveau container
|
||||||
- name: Run new container
|
- name: Run new container
|
||||||
run: |
|
run: |
|
||||||
docker run -d -p 8383:80 --name front-fiscad front-fiscad
|
docker run -d \
|
||||||
|
-p 8383:80 \
|
||||||
|
--name front-fiscad \
|
||||||
|
--restart=always \
|
||||||
|
front-fiscad:latest
|
||||||
|
|
||||||
|
# 🔹 Vérification
|
||||||
|
- name: Check container
|
||||||
|
run: docker ps | grep front-fiscad
|
||||||
10
Dockerfile
10
Dockerfile
@@ -1,7 +1,7 @@
|
|||||||
# ==============================
|
# ==============================
|
||||||
# 1️⃣ Build Angular (Node)
|
# 1️⃣ Build Angular (Node)
|
||||||
# ==============================
|
# ==============================
|
||||||
FROM node:18-alpine AS build
|
FROM node:18-alpine AS compile
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
@@ -24,16 +24,16 @@ RUN node --max_old_space_size=4096 ./node_modules/@angular/cli/bin/ng build --co
|
|||||||
# ==============================
|
# ==============================
|
||||||
# 2️⃣ Serveur Nginx
|
# 2️⃣ Serveur Nginx
|
||||||
# ==============================
|
# ==============================
|
||||||
FROM nginx:latest
|
FROM nginx:latest as build
|
||||||
|
|
||||||
# Supprimer config par défaut
|
# Supprimer config par défaut
|
||||||
RUN rm -rf /usr/share/nginx/html/*
|
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
|
RUN chmod -R 777 /usr/share/nginx/html
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user