test
All checks were successful
Build and Deploy Java Gradle Application / build-and-deploy (push) Successful in 1m49s

This commit is contained in:
Florian THIERRY
2025-07-23 22:54:48 +02:00
parent 5067c1f09b
commit e7f9df658a
3 changed files with 4 additions and 4 deletions

View File

@@ -1,11 +1,11 @@
FROM node:22-alpine AS builder
FROM node:24-alpine AS builder
WORKDIR /app
COPY frontend /app
RUN npm install
RUN npm run build-prod-en
RUN npm run build-prod-fr
FROM nginx:1.27-alpine AS final
FROM nginx:1.29-alpine AS final
WORKDIR /app
COPY --from=builder /app/dist/codiki/en/browser /usr/share/nginx/html/en/
COPY --from=builder /app/dist/codiki/fr/browser/fr /usr/share/nginx/html/fr/