Last active
March 28, 2016 00:07
-
-
Save matutter/f452037a9af897ae1f94 to your computer and use it in GitHub Desktop.
dependencies for server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:latest | |
| MAINTAINER matutter | |
| RUN apk --no-cache add nodejs | |
| RUN apk --no-cache add git | |
| RUN mkdir /home/www | |
| WORKDIR /home/www | |
| ADD package.json | |
| RUN npm install | |
| RUN npm ls --depth=0 | |
| RUN node -v |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name" : "depends", | |
| "description" : "dependencies for server", | |
| "dependencies" : { | |
| "bootstrap" : "*", | |
| "jquery" : "*", | |
| "pug" : "*", | |
| "socket.io" : "*", | |
| "mime" : "*" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment