Skip to content

Commit

Permalink
feat(docker): add docker support
Browse files Browse the repository at this point in the history
  • Loading branch information
FGRibreau committed Apr 1, 2015
1 parent f1621a1 commit ce41595
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
scripts
docs
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM node:0.12.1

MAINTAINER Francois-Guillaume Ribreau <fg@iadvize.com>

RUN npm install check-build -g

VOLUME /app
WORKDIR /app

CMD ["check-build"]

1 comment on commit ce41595

@akinolaseyi1
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BeEF needed

Please sign in to comment.