Created
April 13, 2015 23:13
-
-
Save shofetim/a132509849cc9c0c7cea to your computer and use it in GitHub Desktop.
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
| # ┌────────────────────────────────────────────────────────────────────┐ | |
| # │ Docker container with node, npm, grunt, and bower. │ | |
| # └────────────────────────────────────────────────────────────────────┘ | |
| FROM node:0.10 | |
| ENV DEBIAN_FRONTEND noninteractive | |
| RUN apt-get update | |
| RUN apt-get install -y curl git ruby ruby-dev make && \ | |
| gem install compass | |
| # Update npm | |
| RUN npm update -g npm | |
| # http://gruntjs.com/getting-started | |
| RUN npm install -g grunt-cli | |
| # http://bower.io/ | |
| RUN npm install -g bower |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment