File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77# This is not intended for production use.
88
99# Stage 1 - Create yarn install skeleton layer
10- FROM node:24 -bookworm-slim AS packages
10+ FROM node:22 -bookworm-slim AS packages
1111
1212WORKDIR /app
1313COPY backstage.json package.json yarn.lock ./
@@ -22,7 +22,7 @@ COPY plugins plugins
2222RUN find packages \! -name "package.json" -mindepth 2 -maxdepth 2 -exec rm -rf {} \+
2323
2424# Stage 2 - Install dependencies and build packages
25- FROM node:24 -bookworm-slim AS build
25+ FROM node:22 -bookworm-slim AS build
2626
2727# Set Python interpreter for `node-gyp` to use
2828ENV PYTHON=/usr/bin/python3
@@ -60,7 +60,7 @@ RUN mkdir packages/backend/dist/skeleton packages/backend/dist/bundle \
6060 && tar xzf packages/backend/dist/bundle.tar.gz -C packages/backend/dist/bundle
6161
6262# Stage 3 - Build the actual backend image and install production dependencies
63- FROM node:24 -bookworm-slim
63+ FROM node:22 -bookworm-slim
6464
6565# Set Python interpreter for `node-gyp` to use
6666ENV PYTHON=/usr/bin/python3
You can’t perform that action at this time.
0 commit comments