Skip to content

Instantly share code, notes, and snippets.

@jacobat
Last active August 29, 2015 14:21
Show Gist options
  • Save jacobat/7581a373e5d052d35615 to your computer and use it in GitHub Desktop.
Save jacobat/7581a373e5d052d35615 to your computer and use it in GitHub Desktop.
FROM ubuntu
# This takes up 200 MB
RUN apt-get update && apt-get install *stuff*
MARK
COPY secret /secret
# This takes up 500 MB
RUN bundle install
RUN rm /secret
SQUASH
# Then we add the src
ADD . /src
CMD ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment