Skip to content

Commit df89712

Browse files
authored
bump alpine and node (#4021)
1 parent 1fb0070 commit df89712

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
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:22.14-alpine3.21 AS builder
4+
FROM node:22.17-alpine3.22 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:22.14-alpine3.21 AS configuration
30+
FROM node:22.17-alpine3.22 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.21.3
42+
FROM alpine:3.22.1
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:22.14-alpine3.21 AS builder
2+
FROM node:22.17-alpine3.22 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:22.14-alpine3.21 as configuration
25+
FROM node:22.17-alpine3.22 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 alpine:3.21.3 AS base
2+
FROM alpine:3.22.1 AS base
33
# install node
44
RUN apk add --update nodejs npm
55

backend/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"express": "^5.1.0",
2020
"express-rate-limit": "^7.5.0",
2121
"https": "^1.0.0",
22-
"jose": "^6.0.10",
22+
"jose": "^6.0.12",
2323
"js-yaml": "^4.1.0",
2424
"lodash.escape": "^4.0.1",
2525
"lodash.merge": "^4.6.2",

0 commit comments

Comments
 (0)