Skip to content

Commit

Permalink
Merge pull request #102 from platinouss/feature/231114-cicd
Browse files Browse the repository at this point in the history
Fix(#5): 도커 이미지 빌드 에러 해결
  • Loading branch information
tmddus2 authored Nov 14, 2023
2 parents 03b0c58 + 5d26a44 commit e998272
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM node:18
WORKDIR /app
COPY package*.json .
RUN npm install
COPY /backend .
COPY . .
RUN npm run build
RUN npm test
CMD npm run start:prod

0 comments on commit e998272

Please sign in to comment.