Skip to content

Commit

Permalink
Update Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
fvolz authored Sep 20, 2024
1 parent 868012d commit 53216a9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions react-front-end/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
FROM node

WORKDIR /clientapp
WORKDIR /usr/src/client

COPY . .
COPY package*.json ./

RUN npm install

COPY . .

EXPOSE 3000

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

0 comments on commit 53216a9

Please sign in to comment.