Skip to content

Commit d94fd26

Browse files
committedAug 13, 2024
Use node:20.16.0-alpine
1 parent a8cef24 commit d94fd26

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,11 +1,11 @@
1-
FROM node:slim AS builder
1+
FROM node:20.16.0-alpine AS builder
22
WORKDIR /usr/src/app
33
COPY package*.json ./
44
RUN npm ci
55
COPY . .
66
RUN npm run build
77

8-
FROM node:slim
8+
FROM node:20.16.0-alpine
99
ENV NODE_ENV=production
1010
USER node
1111
WORKDIR /usr/src/app

0 commit comments

Comments
 (0)
Failed to load comments.