Skip to content

Commit

Permalink
fix: Dockerfile 내부 경로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Muungi authored Nov 15, 2023
1 parent ffd53a8 commit 886379a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ FROM node:lts-alpine

WORKDIR /usr/src/app

COPY ./cd-test-nest/package*.json ./
COPY ./backend/package*.json ./

RUN npm install

COPY ./cd-test-nest/. .
COPY ./backend/. .

RUN npm run build

Expand Down

0 comments on commit 886379a

Please sign in to comment.