File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 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
44ARG default_tag
55ARG tag
@@ -28,7 +28,7 @@ RUN npm run build
2828RUN 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
3232WORKDIR /kyma
3333
3434RUN apk add make
@@ -40,7 +40,7 @@ RUN npm ci
4040RUN make prepare-configuration
4141
4242# ---- Copy result ----
43- FROM node:24.13-alpine3.23
43+ FROM node:24.13.1 -alpine3.23
4444WORKDIR /app
4545
4646COPY --chown=65532:65532 --from=builder /app/build /app/core-ui
Original file line number Diff line number Diff line change 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
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 --platform=$BUILDPLATFORM node:24.13-alpine3.23 AS configuration
25+ FROM --platform=$BUILDPLATFORM node:24.13.1 -alpine3.23 AS configuration
2626WORKDIR /kyma
2727
2828RUN apk add make
@@ -34,7 +34,7 @@ RUN npm ci
3434RUN 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
3838WORKDIR /app
3939
4040# apps
Original file line number Diff line number Diff line change 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
44RUN apk add --update nodejs npm
55
You can’t perform that action at this time.
0 commit comments