Skip to content

Commit

Permalink
Create Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
rgarayev authored Feb 11, 2025
1 parent 0de93e8 commit 16a9920
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:22.13.1
WORKDIR /usr/app

COPY package.json /usr/app/
RUN npm i

COPY . .

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

0 comments on commit 16a9920

Please sign in to comment.