Skip to content

Commit

Permalink
added docker config
Browse files Browse the repository at this point in the history
  • Loading branch information
alivarastepour committed Nov 3, 2023
1 parent 16beae1 commit 7098d5b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/.github
/.next
/node_modules
.gitignore
README.md
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM node:latest

COPY . /app/

WORKDIR /app

RUN yarn

CMD [ "npm", "run","dev" ]

0 comments on commit 7098d5b

Please sign in to comment.