Skip to content

Commit

Permalink
Merge #65: Dockerfile 생성
Browse files Browse the repository at this point in the history
[add] Dockerfile 생성
  • Loading branch information
yaongmeow authored Nov 21, 2023
2 parents 1dedc05 + a167b83 commit eddac04
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions BE/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:18

WORKDIR /app

COPY package.json package-lock.json ./

RUN npm ci

COPY . .

ENTRYPOINT ["npm", "run", "start"]

0 comments on commit eddac04

Please sign in to comment.