Skip to content

Instantly share code, notes, and snippets.

@awolf
Created January 13, 2019 20:54
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 awolf/e7a14b7ed6025f956b5ef307d7785166 to your computer and use it in GitHub Desktop.
Save awolf/e7a14b7ed6025f956b5ef307d7785166 to your computer and use it in GitHub Desktop.
Ruby and Docker - Dockerfile Sample
FROM ruby:2.2
RUN apt-get update && apt-get install -y build-essential
RUN mkdir -p /app
WORKDIR /app
RUN gem install bundler
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment