Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rgarayev authored Feb 6, 2025
1 parent 84ce46e commit 324b412
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM node:16.14.2
WORKDIR /usr/app

COPY package.json /usr/app/
RUN npm i --legacy-peer-deps

COPY . .

EXPOSE 3000
CMD ["npm", "start"]

0 comments on commit 324b412

Please sign in to comment.