Skip to content

Commit

Permalink
Merge pull request #22 from dieudonneAwa/ch-setup-docker-167728013
Browse files Browse the repository at this point in the history
#167728013 Setup Docker
  • Loading branch information
chukwuemekachm committed Aug 20, 2019
2 parents 110150e + 16d5062 commit 6cfbe07
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
node_modules
README.md
.bablerc
.env.example
.eslintrc.json
.gitignore
.hound.yml
.sequelizerc
.travis.yml
PULL_REQUEST_TEMPLATE.md
7 changes: 7 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM node:9-slim
WORKDIR /cyclops-backend
COPY . /cyclops-backend
RUN npm install
COPY . /cyclops-backend
CMD ["npm", "start"]
EXPOSE 3000

0 comments on commit 6cfbe07

Please sign in to comment.