Fix package.json, Dockerfile, add CI validation to prevent recurrence
Build and push images / validate (push) Successful in 2s
Build and push images / build-backend (push) Successful in 5s
Build and push images / build-worker (push) Successful in 5s
Build and push images / build-frontend (push) Successful in 21s

This commit is contained in:
2026-06-06 18:27:29 +01:00
parent 070267eee5
commit 24f8417982
3 changed files with 37 additions and 11 deletions
+2 -2
View File
@@ -1,7 +1,7 @@
FROM node:20-alpine AS builder
WORKDIR /app
COPY package*.json ./
COPY package.json ./
RUN npm install
COPY . .
@@ -15,4 +15,4 @@ RUN npm run build
FROM nginx:alpine
COPY --from=builder /app/dist /usr/share/nginx/html
COPY nginx-spa.conf /etc/nginx/conf.d/default.conf
EXPOSE 80
EXPOSE 80