Skip to content
Open
Show file tree
Hide file tree
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 docker/backend.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine AS builder
FROM node:25-alpine AS builder

Check failure on line 1 in docker/backend.Dockerfile

View workflow job for this annotation

GitHub Actions / Checkov IaC Scan

CKV_DOCKER_3: "Ensure that a user for the container has been created"

WORKDIR /app

Expand All @@ -15,7 +15,7 @@
RUN npm run build

# Production stage
FROM node:20-alpine
FROM node:25-alpine

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker/frontend.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20-alpine AS builder
FROM node:25-alpine AS builder

Check failure on line 1 in docker/frontend.Dockerfile

View workflow job for this annotation

GitHub Actions / Checkov IaC Scan

CKV_DOCKER_2: "Ensure that HEALTHCHECK instructions have been added to container images"

WORKDIR /app

Expand Down
Loading