We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47df795 commit 9354328Copy full SHA for 9354328
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM node:16 as build
+FROM node:16-bullseye as build
2
WORKDIR /usr/src/app
3
# Do `npm ci` separately so we can cache `node_modules`
4
# https://nodejs.org/en/docs/guides/nodejs-docker-webapp/
@@ -7,7 +7,7 @@ RUN npm clean-install
7
COPY . .
8
RUN npm run build
9
10
-FROM node:16-slim
+FROM node:16-bullseye-slim
11
12
COPY --from=build /usr/src/app/node_modules node_modules
13
COPY --from=build /usr/src/app/dist dist
0 commit comments