Skip to content

Commit af657d8

Browse files
committed
build: Dockerfile 빌드 오류 수정
1 parent 06b46e2 commit af657d8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
FROM node:22.16.0-alpine AS builder
22

3+
RUN apk add --no-cache python3 make g++
4+
35
WORKDIR /usr/src/app
46

57
COPY package*.json ./
@@ -13,9 +15,7 @@ RUN npm prune --production
1315

1416
FROM node:22.16.0-alpine AS deploy
1517

16-
ENV NODE_ENV production
17-
18-
RUN apk add --no-cache tzdata
18+
RUN apk add --no-cache tzdata curl
1919

2020
WORKDIR /usr/src/app
2121
COPY --from=builder /usr/src/app ./

0 commit comments

Comments
 (0)