Skip to content

Commit

Permalink
Merge pull request #251 from bounswe/3design_frontend
Browse files Browse the repository at this point in the history
Dockerfile added for frontend
  • Loading branch information
oguzkagnici authored Oct 21, 2024
2 parents 89c0190 + 74d251f commit b2c5b7f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions 3Design/frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM node:20
WORKDIR /app
COPY package-lock.json package.json ./
RUN npm install
COPY . .
CMD ["npm", "start"]

0 comments on commit b2c5b7f

Please sign in to comment.