Last active
August 29, 2015 14:21
-
-
Save jacobat/7581a373e5d052d35615 to your computer and use it in GitHub Desktop.
This file contains 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 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