Skip to content

Instantly share code, notes, and snippets.

@grigio
Created October 24, 2013 23:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save grigio/7146835 to your computer and use it in GitHub Desktop.
Save grigio/7146835 to your computer and use it in GitHub Desktop.
# Dockerfile for Meteor Shell app
# sudo docker build -t my/shell - < Dockerfile # build image
# sudo docker run -p 7000:3000 my/shell # run web server, wait for http://localhost:3000
# Go to: http://localhost:7000
FROM ubuntu:12.04
MAINTAINER Luigi Maselli
RUN echo "deb http://it.archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
RUN apt-get update
RUN apt-get install -y python-software-properties git curl sudo
RUN echo tlsv1 > $HOME/.curlrc # FIX for curl & meteor certs
RUN curl http://install.meteor.com | /bin/sh
ENV BUILT_ON 20131024.2
RUN git clone https://github.com/grigio/meteor-shell
CMD cd meteor-shell && meteor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment