Skip to content

Commit ae8d915

Browse files
authored
chore: Bump Alpine and Node (kyma-project#4532)
1 parent 607531c commit ae8d915

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# this is a Dockerfile for single deployment app - both backend and frontends
22

33
# ---- Base Alpine with Node ----
4-
FROM --platform=$BUILDPLATFORM node:22.20-alpine3.22 AS builder
4+
FROM --platform=$BUILDPLATFORM node:22.22-alpine3.23 AS builder
55
ARG default_tag
66
ARG tag
77

@@ -27,7 +27,7 @@ RUN npm run build:docker
2727
RUN cd /app/backend && npm run build
2828

2929
# ---- Environments Configuration ----
30-
FROM --platform=$BUILDPLATFORM node:22.20-alpine3.22 AS configuration
30+
FROM --platform=$BUILDPLATFORM node:22.22-alpine3.23 AS configuration
3131
WORKDIR /kyma
3232

3333
RUN apk add make
@@ -39,7 +39,7 @@ RUN npm ci
3939
RUN make prepare-configuration
4040

4141
# ---- Serve ----
42-
FROM alpine:3.22.2
42+
FROM alpine:3.23.2
4343
WORKDIR /app
4444

4545
RUN apk --no-cache upgrade && \

Dockerfile.web

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ---- Base Alpine with Node ----
2-
FROM --platform=$BUILDPLATFORM node:22.20-alpine3.22 AS builder
2+
FROM --platform=$BUILDPLATFORM node:22.22-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:22.20-alpine3.22 AS configuration
25+
FROM --platform=$BUILDPLATFORM node:22.22-alpine3.23 AS configuration
2626
WORKDIR /kyma
2727

2828
RUN apk add make

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.22.2 AS base
2+
FROM --platform=$BUILDPLATFORM alpine:3.23.2 AS base
33
# install node
44
RUN apk add --update nodejs npm
55

0 commit comments

Comments
 (0)