From 0aeab6f770d6fd0c173408d67f68bcfea5f5ea35 Mon Sep 17 00:00:00 2001 From: rpigu-i Date: Fri, 9 Feb 2024 07:24:58 -0500 Subject: [PATCH] Update image in Dockerfile example in Flighcontrol docs to node:18-bookworm-slim Signed-off-by: rpigu-i --- docs/deployment/flightcontrol.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/deployment/flightcontrol.md b/docs/deployment/flightcontrol.md index 1923e5bc39..6078d931fb 100644 --- a/docs/deployment/flightcontrol.md +++ b/docs/deployment/flightcontrol.md @@ -28,7 +28,7 @@ The following two code snippets demonstrate this method. The first block of code # yarn build:backend # # Once the commands have been run, you can build the image using `yarn build-image` -FROM public.ecr.aws/c4g3p9t9/node-bookworm-slim:18.16.1-8.6.0 as build +FROM node:18-bookworm-slim as build USER node WORKDIR /app @@ -43,7 +43,7 @@ RUN yarn tsc # The configuration files here should match the one you use inside the Dockerfile below. RUN yarn build:backend --config ../../app-config.yaml -FROM public.ecr.aws/c4g3p9t9/node-bookworm-slim:18.16.1-8.6.0 +FROM node:18-bookworm-slim # Install isolate-vm dependencies, these are needed by the @backstage/plugin-scaffolder-backend. RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \