[docker] remove cargo and pip caches

This commit is contained in:
Sam Schott 2021-02-18 17:23:31 +00:00
parent fd0222b8d1
commit 144e8a4838

View File

@ -13,9 +13,8 @@ RUN set -eux ; \
openssl-dev \
cargo ; \
pip install maestral==${VERSION} ; \
pip cache purge ; \
cargo clean ; \
rm -rf ~/.cargo; \
rm -rf /root/.cargo; \
rm -rf /root/.cache; \
apk del --no-network .build-deps
USER dropbox