File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 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
55ARG default_tag
66ARG tag
77
@@ -27,7 +27,7 @@ RUN npm run build:docker
2727RUN 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
3131WORKDIR /kyma
3232
3333RUN apk add make
@@ -39,7 +39,7 @@ RUN npm ci
3939RUN make prepare-configuration
4040
4141# ---- Serve ----
42- FROM alpine:3.20.2
42+ FROM alpine:3.21.3
4343WORKDIR /app
4444
4545RUN apk --no-cache upgrade && \
Original file line number Diff line number Diff line change 11# ---- Base Alpine with Node ----
2- FROM node:20.17 -alpine3.20 AS builder
2+ FROM node:22.14 -alpine3.21 AS builder
33ARG default_tag
44ARG tag
55
@@ -22,7 +22,7 @@ RUN export TAG=${tag:-$default_tag} && yq -i '.version = "'${TAG}'"' public/ver
2222RUN 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
2626WORKDIR /kyma
2727
2828RUN apk add make
You can’t perform that action at this time.
0 commit comments