mirror of https://github.com/searxng/searxng.git
add --no-cache to package installs
Add --no-cache to apk upgrade and apk add calls.
This commit is contained in:
parent
8e62f7600f
commit
906320d271
|
@ -25,8 +25,8 @@ RUN addgroup -g ${SEARX_GID} searx && \
|
||||||
|
|
||||||
COPY requirements.txt ./requirements.txt
|
COPY requirements.txt ./requirements.txt
|
||||||
|
|
||||||
RUN apk -U upgrade \
|
RUN apk upgrade --no-cache \
|
||||||
&& apk add -t build-dependencies \
|
&& apk add --no-cache -t build-dependencies \
|
||||||
build-base \
|
build-base \
|
||||||
py3-setuptools \
|
py3-setuptools \
|
||||||
python3-dev \
|
python3-dev \
|
||||||
|
@ -36,7 +36,7 @@ RUN apk -U upgrade \
|
||||||
openssl-dev \
|
openssl-dev \
|
||||||
tar \
|
tar \
|
||||||
git \
|
git \
|
||||||
&& apk add \
|
&& apk add --no-cache \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
su-exec \
|
su-exec \
|
||||||
python3 \
|
python3 \
|
||||||
|
@ -48,8 +48,7 @@ RUN apk -U upgrade \
|
||||||
uwsgi-python3 \
|
uwsgi-python3 \
|
||||||
&& pip3 install --upgrade pip \
|
&& pip3 install --upgrade pip \
|
||||||
&& pip3 install --no-cache -r requirements.txt \
|
&& pip3 install --no-cache -r requirements.txt \
|
||||||
&& apk del build-dependencies \
|
&& apk del build-dependencies
|
||||||
&& rm -f /var/cache/apk/*
|
|
||||||
|
|
||||||
COPY --chown=searx:searx . .
|
COPY --chown=searx:searx . .
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue