We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 544f722 + a77d539 commit e76f15cCopy full SHA for e76f15c
1 file changed
Dockerfile
@@ -13,7 +13,7 @@
13
# limitations under the License.
14
15
# Stage 1 - Create yarn install skeleton layer
16
-FROM node:18.20-bullseye-slim AS packages
+FROM node:26.3-bullseye-slim AS packages
17
18
WORKDIR /app
19
COPY package.json yarn.lock ./
@@ -25,7 +25,7 @@ RUN find packages \! -name "package.json" -mindepth 2 -maxdepth 2 -exec rm -rf {
25
26
27
# Stage 2 - Install dependencies and build packages
28
-FROM node:18.20-bullseye-slim AS build
+FROM node:26.3-bullseye-slim AS build
29
30
31
COPY --from=packages /app .
@@ -44,7 +44,7 @@ RUN yarn --cwd packages/backend build
44
45
46
# Stage 3 - Build the base image
47
-FROM node:18.20-bullseye-slim as base-backstage-app
+FROM node:26.3-bullseye-slim as base-backstage-app
48
49
50
0 commit comments