diff options
author | Jason Kaltsikis <jasonkaltsikis@gmail.com> | 2020-05-09 14:02:09 +0300 |
---|---|---|
committer | Jason Kaltsikis <jasonkaltsikis@gmail.com> | 2020-05-09 18:58:26 +0300 |
commit | 5ed4d72cfa3e4326bd2f231a0ff29dcaacfba48a (patch) | |
tree | e44251ea5264403ef16e2c1e3398dfbada03dafd /Dockerfile | |
parent | d27331c8d9b523fe8d99328e491d2f1e1c5fb82d (diff) | |
download | searxng-5ed4d72cfa3e4326bd2f231a0ff29dcaacfba48a.tar.gz searxng-5ed4d72cfa3e4326bd2f231a0ff29dcaacfba48a.zip |
Remove cache of pip upgrade
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 700a21ffc..59098e03b 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 . . |