Merge pull request #1947 from jjasonkal/master

Remove cache of Dockerfile
This commit is contained in:
Alexandre Flament 2020-05-09 19:25:40 +02:00 committed by GitHub
commit 2d4d0bdc0c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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 . .