Skip to content

Commit

Permalink
feat: test
Browse files Browse the repository at this point in the history
  • Loading branch information
miro-ring committed Dec 16, 2023
1 parent 3beb0a0 commit 318f35e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# node.js 압축 이미지를 설치합니다
FROM node:20.10.0-alpine as BUILD

# 이미지 내부 작업 경로를 설정합니다
RUN npm install -g pnpm

WORKDIR /app

COPY . .
Expand All @@ -11,11 +11,11 @@ RUN pnpm i
RUN pnpm build

FROM node:20.10.0-alpine

EXPOSE 3000

WORKDIR /app

COPY --from=BUILD /app/ .

# 앱 시작 명령어"를 시작합니다.
ENTRYPOINT ["pnpm", "start"]

0 comments on commit 318f35e

Please sign in to comment.