summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorJason Kaltsikis <jasonkaltsikis@gmail.com>2020-05-09 14:02:09 +0300
committerJason Kaltsikis <jasonkaltsikis@gmail.com>2020-05-09 18:58:26 +0300
commit5ed4d72cfa3e4326bd2f231a0ff29dcaacfba48a (patch)
treee44251ea5264403ef16e2c1e3398dfbada03dafd /Dockerfile
parentd27331c8d9b523fe8d99328e491d2f1e1c5fb82d (diff)
Remove cache of pip upgrade
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 700a21ff..59098e03 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -53,7 +53,8 @@ RUN apk upgrade --no-cache \
uwsgi-python3 \
&& pip3 install --upgrade pip \
&& pip3 install --no-cache -r requirements.txt \
- && apk del build-dependencies
+ && apk del build-dependencies \
+ && rm -rf /root/.cache
COPY --chown=searx:searx . .