Skip to content

Instantly share code, notes, and snippets.

@mraaroncruz
Last active March 8, 2019 09:47
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 mraaroncruz/43f27268d2ed3656b3191abd9ac1660b to your computer and use it in GitHub Desktop.
Save mraaroncruz/43f27268d2ed3656b3191abd9ac1660b to your computer and use it in GitHub Desktop.
Very, very simple ruby docker image
FROM ruby:2.6
RUN mkdir /app
WORKDIR /app
ADD Gemfile Gemfile.lock /app/
RUN gem install bundler \
&& bundle install -j 8
ADD . /app
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment