Skip to content

Instantly share code, notes, and snippets.

@karellm
Last active December 23, 2015 14:49
Show Gist options
  • Save karellm/6651723 to your computer and use it in GitHub Desktop.
Save karellm/6651723 to your computer and use it in GitHub Desktop.
Meteor Dockerfile
FROM ubuntu
RUN apt-get install -y openssl vim tmux git-core curl
RUN apt-get install -y python-software-properties python
RUN add-apt-repository ppa:chris-lea/node.js
RUN echo "deb http://us.archive.ubuntu.com/ubuntu/ precise universe" >> /etc/apt/sources.list
RUN apt-get update
RUN apt-get upgrade
RUN apt-get install -y nodejs
RUN curl https://install.meteor.com | /bin/sh -x
RUN npm install -g meteorite
RUN mkdir -p /var/www
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment