Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ CMD ["node", "dist/server/server/server.js"]
# ============================================================================
# Stage 3: frontend (nginx runtime)
# ============================================================================
FROM nginx:1.27.4-alpine AS frontend
FROM nginx:1.31.4-alpine AS frontend

# Copy frontend build from shared-builder (not from api stage)
COPY --from=shared-builder /app/dist /usr/share/nginx/html
Expand Down Expand Up @@ -153,7 +153,7 @@ RUN npm run build:e2e
# ============================================================================
# Stage 5: frontend-e2e (nginx runtime with e2e test seams)
# ============================================================================
FROM nginx:1.27.4-alpine AS frontend-e2e
FROM nginx:1.31.4-alpine AS frontend-e2e

COPY --from=frontend-e2e-builder /app/dist /usr/share/nginx/html
COPY docker/nginx.local.conf /etc/nginx/conf.d/default.conf
Expand Down
Loading