Skip to content

Commit

Permalink
Merge pull request #921 from Viveksati5143/patch-1
Browse files Browse the repository at this point in the history
feat: Dockerized the app
  • Loading branch information
panwar8279 committed Aug 3, 2023
2 parents a1a6ca8 + 37bf566 commit 12d2d62
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
node_modules
npm-debug.log*
build
.github
*.md
.gitignore
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:14-alpine

WORKDIR /Games-and-Go

COPY ./package*.json /Games-and-Go

RUN npm install

COPY . /Games-and-Go

CMD ["npm","start"]

0 comments on commit 12d2d62

Please sign in to comment.