Skip to content

Commit cc4cedc

Browse files
committed
bump alpine and node
1 parent 3b04e45 commit cc4cedc

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
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 node:20.17-alpine3.20 AS builder
4+
FROM node:22.14-alpine3.21 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 node:20.17-alpine3.20 AS configuration
30+
FROM node:22.14-alpine3.21 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.20.2
42+
FROM alpine:3.21.3
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 node:20.17-alpine3.20 AS builder
2+
FROM node:22.14-alpine3.21 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 node:20.17-alpine3.20 as configuration
25+
FROM node:22.14-alpine3.21 as configuration
2626
WORKDIR /kyma
2727

2828
RUN apk add make

0 commit comments

Comments
 (0)