Skip to content

Commit 0470d3d

Browse files
committed
build: Node.js v22.17.1으로 업그레이드
1 parent af657d8 commit 0470d3d

File tree

6 files changed

+13
-11
lines changed

6 files changed

+13
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ concurrency:
1212
cancel-in-progress: true
1313

1414
env:
15-
NODE_VERSION: 22.16.0
15+
NODE_VERSION: 22.17.1
1616

1717
jobs:
1818
build:

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v22.16.0
1+
v22.17.1

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:22.16.0-alpine AS builder
1+
FROM node:22.17.1-alpine AS builder
22

33
RUN apk add --no-cache python3 make g++
44

@@ -13,7 +13,7 @@ RUN npm run build
1313
# devDependencies 제거
1414
RUN npm prune --production
1515

16-
FROM node:22.16.0-alpine AS deploy
16+
FROM node:22.17.1-alpine AS deploy
1717

1818
RUN apk add --no-cache tzdata curl
1919

Dockerfile.dev

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
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

35
WORKDIR /usr/src/app
46
COPY . .
57

68
RUN npm install && npm run build
79

8-
FROM node:22.16.0-alpine
10+
FROM node:22.17.1-alpine
911

1012
WORKDIR /usr/src/app
1113
COPY --from=builder /usr/src/app ./

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"@swc/jest": "^0.2.39",
6464
"@types/express": "^5.0.3",
6565
"@types/jest": "^29.5.14",
66-
"@types/node": "^22.16.3",
66+
"@types/node": "^22.17.0",
6767
"@types/supertest": "^6.0.3",
6868
"@typescript-eslint/eslint-plugin": "^8.36.0",
6969
"@typescript-eslint/parser": "^8.36.0",

0 commit comments

Comments
 (0)