Skip to content

Commit

Permalink
feat: add Dockerfile for feature based
Browse files Browse the repository at this point in the history
  • Loading branch information
omidasadpour committed Nov 16, 2023
1 parent b86c1c7 commit d352c62
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:18

WORKDIR /app

COPY package.json ./

RUN yarn install

COPY . .

CMD [ "yarn", "start" ]

0 comments on commit d352c62

Please sign in to comment.