We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a37626 commit f91ef35Copy full SHA for f91ef35
.nvmrc
@@ -1 +1 @@
1
-v22.16.0
+22.17.1
Dockerfile
@@ -1,4 +1,4 @@
-FROM node:22.16.0-alpine AS builder
+FROM node:22.17.1-alpine AS builder
2
3
WORKDIR /usr/src/app
4
@@ -11,7 +11,7 @@ RUN npm run build
11
# devDependencies 제거
12
RUN npm prune --production
13
14
-FROM node:22.16.0-alpine AS deploy
+FROM node:22.17.1-alpine AS deploy
15
16
ENV NODE_ENV production
17
Dockerfile.dev
@@ -1,11 +1,11 @@
COPY . .
5
6
RUN npm install && npm run build
7
8
-FROM node:22.16.0-alpine
+FROM node:22.17.1-alpine
9
10
COPY --from=builder /usr/src/app ./
0 commit comments