Skip to content

Instantly share code, notes, and snippets.

@shofetim
Created April 13, 2015 23:13
Show Gist options
  • Select an option

  • Save shofetim/a132509849cc9c0c7cea to your computer and use it in GitHub Desktop.

Select an option

Save shofetim/a132509849cc9c0c7cea to your computer and use it in GitHub Desktop.
# ┌────────────────────────────────────────────────────────────────────┐
# │ 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