We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ac7610 commit d393632Copy full SHA for d393632
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:12.16.3-buster-slim AS build
+FROM node:lts-bookworm-slim AS build
2
WORKDIR /app
3
4
COPY package.json yarn.lock ./
@@ -7,7 +7,7 @@ RUN yarn install --frozen-lockfile && yarn cache clean
7
COPY . .
8
RUN yarn build
9
10
-FROM node:12.16.3-buster-slim AS run
+FROM node:lts-bookworm-slim AS run
11
12
13
COPY --from=build /app/yarn.lock /app/package.json /app/
0 commit comments