Skip to content

Commit

Permalink
Ft/dockerfile (#5)
Browse files Browse the repository at this point in the history
* ci(init) : PR template

* ci: conv commits

* ci: add test, docker build

* fix: ci minor

* fix: ci minor

* Fix(test): customer and vendor

* ci(fix): dev_test minor

* ci(fix): minor

* fix(test): vendor controller

* fix(test): vendor controller minor changes

* feat: Dockerfile

---------

Co-authored-by: Tushar <[email protected]>
  • Loading branch information
krishnan05 and tusharbansal22 authored Apr 2, 2024
1 parent 2ccae69 commit 8a7df82
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM node:21

WORKDIR /app

COPY package*.json ./

RUN npm install

COPY . .

EXPOSE 8001

CMD ["npm", "start"]

0 comments on commit 8a7df82

Please sign in to comment.