Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

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



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




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: