File tree Expand file tree Collapse file tree 4 files changed +8
-6
lines changed
Expand file tree Collapse file tree 4 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ concurrency:
1212 cancel-in-progress : true
1313
1414env :
15- NODE_VERSION : 22.16.0
15+ NODE_VERSION : 22.17.1
1616
1717jobs :
1818 build :
Original file line number Diff line number Diff line change 1- v22.16.0
1+ v22.17.1
Original file line number Diff line number Diff line change 1- FROM node:22.16.0 -alpine AS builder
1+ FROM node:22.17.1 -alpine AS builder
22
33RUN apk add --no-cache python3 make g++
44
@@ -13,7 +13,7 @@ RUN npm run build
1313# devDependencies 제거
1414RUN npm prune --production
1515
16- FROM node:22.16.0 -alpine AS deploy
16+ FROM node:22.17.1 -alpine AS deploy
1717
1818RUN apk add --no-cache tzdata curl
1919
Original file line number Diff line number Diff line change 1- FROM node:22.16.0-alpine AS builder
1+ FROM node:22.17.1-alpine AS builder
2+
3+ RUN apk add --no-cache python3 make g++
24
35WORKDIR /usr/src/app
46COPY . .
57
68RUN npm install && npm run build
79
8- FROM node:22.16.0 -alpine
10+ FROM node:22.17.1 -alpine
911
1012WORKDIR /usr/src/app
1113COPY --from=builder /usr/src/app ./
You can’t perform that action at this time.
0 commit comments