Last active
December 23, 2015 14:49
-
-
Save karellm/6651723 to your computer and use it in GitHub Desktop.
Meteor Dockerfile
This file contains 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 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