Created
June 6, 2013 12:45
-
-
Save shingara/5721228 to your computer and use it in GitHub Desktop.
Docker file to Errbit 0.1.0
This file contains hidden or 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 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