Skip to content

Instantly share code, notes, and snippets.

@shingara
Created June 6, 2013 12:45
Show Gist options
  • Save shingara/5721228 to your computer and use it in GitHub Desktop.
Save shingara/5721228 to your computer and use it in GitHub Desktop.
Docker file to Errbit 0.1.0
FROM shingara/ruby-2.0.0
MAINTAINER Cyril Mougel "[email protected]"
# need because git clone on Gemfile
RUN apt-get -y -q install git-core
## Gem needed by some gems
RUN apt-get -y -q install libxml2 libxml2-dev libxslt-dev libcurl4-openssl-dev
RUN wget -O errbit-0.1.0.tar.gz https://github.com/errbit/errbit/archive/v0.1.0.tar.gz
RUN tar -xzvf errbit-0.1.0.tar.gz
RUN gem install bundler --no-ri --no-rdoc
RUN cd errbit-0.1.0 && bundle install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment