Skip to content

Commit

Permalink
Update dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Dandiggas authored Oct 30, 2023
1 parent d9c8e79 commit bdb54b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions todolist-app/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ FROM node:16-alpine

WORKDIR /app/todolist-app/

COPY package*.json /app/todolist-app/
COPY ./todolist-app/package*.json /app/todolist-app/
RUN npm install

COPY . /app/todolist-app/
COPY ./todolist-app/ /app/todolist-app/

CMD ["npm", "start"]
CMD ["npm", "start"]

0 comments on commit bdb54b2

Please sign in to comment.