Hacker News new | ask | show | jobs
by interrrested 3541 days ago
In Dockerfile:

# Remove the git repo to save space.

RUN rm -rf /code/.git

Pretty sure that it will not save any space because it will be in separate layer. If you want space to be saved to should be done as "one command".

RUN git clone ... /code/ && rm -rf /code/.git

1 comments

Ah, thanks for that! I wasn't sure if docker was sending all the commits or just the latest one. Will change, thanks!