Skip to content

Commit d393632

Browse files
committedFeb 2, 2025
update node versoin in dockerfile
1 parent 4ac7610 commit d393632

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:12.16.3-buster-slim AS build
1+
FROM node:lts-bookworm-slim AS build
22
WORKDIR /app
33

44
COPY package.json yarn.lock ./
@@ -7,7 +7,7 @@ RUN yarn install --frozen-lockfile && yarn cache clean
77
COPY . .
88
RUN yarn build
99

10-
FROM node:12.16.3-buster-slim AS run
10+
FROM node:lts-bookworm-slim AS run
1111
WORKDIR /app
1212

1313
COPY --from=build /app/yarn.lock /app/package.json /app/

0 commit comments

Comments
 (0)