Skip to content

Commit 9354328

Browse files
sweatybridgesoedirgo
authored andcommitted
chore: update base docker image to bullseye
1 parent 47df795 commit 9354328

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:16 as build
1+
FROM node:16-bullseye as build
22
WORKDIR /usr/src/app
33
# Do `npm ci` separately so we can cache `node_modules`
44
# https://nodejs.org/en/docs/guides/nodejs-docker-webapp/
@@ -7,7 +7,7 @@ RUN npm clean-install
77
COPY . .
88
RUN npm run build
99

10-
FROM node:16-slim
10+
FROM node:16-bullseye-slim
1111
WORKDIR /usr/src/app
1212
COPY --from=build /usr/src/app/node_modules node_modules
1313
COPY --from=build /usr/src/app/dist dist

0 commit comments

Comments
 (0)