Skip to content

Instantly share code, notes, and snippets.

@kenrick
Created February 3, 2015 02:46
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 kenrick/f91f914db3657ae41572 to your computer and use it in GitHub Desktop.
Save kenrick/f91f914db3657ae41572 to your computer and use it in GitHub Desktop.
FROM ruby:2.2.0
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev
RUN mkdir /signupsumo
WORKDIR /signupsumo
ADD Gemfile /signupsumo/Gemfile
ADD Gemfile.lock /signupsumo/Gemfile.lock
RUN bundle install
ADD . /signupsumo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment