Remove $HOME/.cache/ directory after building.

This commit is contained in:
pataquets 2016-09-18 03:13:07 +02:00 committed by Brian Warner
parent ab698c05fa
commit b5d16f0718

View File

@ -4,6 +4,7 @@ ADD . /tahoe-lafs
RUN \
cd /tahoe-lafs && \
git pull --depth=100 && \
pip install .
pip install . && \
rm -rf ~/.cache/
WORKDIR /root