Skip to content

Commit 498e68e

Browse files
authored
fix: Bump base images to include vulnerability fix (#4620)
1 parent 2cd3768 commit 498e68e

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# this is a Dockerfile for single deployment app - both backend and frontend
2-
FROM --platform=$BUILDPLATFORM node:24.13-alpine3.23 AS builder
2+
FROM --platform=$BUILDPLATFORM node:24.13.1-alpine3.23 AS builder
33

44
ARG default_tag
55
ARG tag
@@ -28,7 +28,7 @@ RUN npm run build
2828
RUN npm prune --omit=dev
2929

3030
# ---- Environments Configuration ----
31-
FROM --platform=$BUILDPLATFORM node:24.13-alpine3.23 AS configuration
31+
FROM --platform=$BUILDPLATFORM node:24.13.1-alpine3.23 AS configuration
3232
WORKDIR /kyma
3333

3434
RUN apk add make
@@ -40,7 +40,7 @@ RUN npm ci
4040
RUN make prepare-configuration
4141

4242
# ---- Copy result ----
43-
FROM node:24.13-alpine3.23
43+
FROM node:24.13.1-alpine3.23
4444
WORKDIR /app
4545

4646
COPY --chown=65532:65532 --from=builder /app/build /app/core-ui

Dockerfile.web

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ---- Base Alpine with Node ----
2-
FROM --platform=$BUILDPLATFORM node:24.13-alpine3.23 AS builder
2+
FROM --platform=$BUILDPLATFORM node:24.13.1-alpine3.23 AS builder
33
ARG default_tag
44
ARG tag
55

@@ -22,7 +22,7 @@ RUN export TAG=${tag:-$default_tag} && yq -i '.version = "'${TAG}'"' public/ver
2222
RUN npm run build:docker
2323

2424
# ---- Environments Configuration ----
25-
FROM --platform=$BUILDPLATFORM node:24.13-alpine3.23 AS configuration
25+
FROM --platform=$BUILDPLATFORM node:24.13.1-alpine3.23 AS configuration
2626
WORKDIR /kyma
2727

2828
RUN apk add make
@@ -34,7 +34,7 @@ RUN npm ci
3434
RUN make prepare-configuration
3535

3636
# ---- Serve ----
37-
FROM nginxinc/nginx-unprivileged:1.29.3-alpine3.22
37+
FROM nginxinc/nginx-unprivileged:1.29.5-alpine3.23
3838
WORKDIR /app
3939

4040
# apps

backend/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ---- Base Alpine with Node ----
2-
FROM --platform=$BUILDPLATFORM alpine:3.23.2 AS base
2+
FROM --platform=$BUILDPLATFORM alpine:3.23.3 AS base
33
# install node
44
RUN apk add --update nodejs npm
55

0 commit comments

Comments
 (0)