Skip to content
This repository has been archived by the owner on Jul 5, 2018. It is now read-only.

Commit

Permalink
Added Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
mhajder committed Jun 24, 2018
1 parent 2b0271b commit abc98d6
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 @@
.git
.gitignore
.gitattributes

LICENSE
README.md
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:10-alpine

WORKDIR /app

COPY . /app

RUN npm install

ENTRYPOINT ["node", "cli.js"]

CMD ["--help"]

0 comments on commit abc98d6

Please sign in to comment.