From cb86cd531f4309d61815a0e9577437f8256de1f8 Mon Sep 17 00:00:00 2001 From: ViViDboarder Date: Mon, 10 Feb 2020 17:14:19 -0800 Subject: [PATCH] Remove pip cache dir --- Dockerfile | 2 +- Dockerfile.armhf | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1f3ffd8..ee951d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,7 +23,7 @@ RUN apt-get update \ python-urllib3 \ rsync \ tahoe-lafs \ - && pip install -U boto b2 \ + && pip install -U --no-cache-dir boto b2 \ && apt-get autoremove -y python-pip \ && apt-get clean \ && rm -rf /var/apt/lists/* diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 9c5e4f5..df90446 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -17,8 +17,8 @@ RUN apt-get update \ python-urllib3 \ rsync \ tahoe-lafs \ - && pip install -U setuptools \ - && pip install -U boto b2 \ + && pip install --no-cache-dir -U setuptools \ + && pip install --no-cache-dir -U boto b2 \ && apt-get remove -y python-pip \ && apt-get install -y --no-install-recommends \ python-swiftclient \