Compare commits
4 commits
fc34f7f213
...
7ce8ab6458
Author | SHA1 | Date | |
---|---|---|---|
7ce8ab6458 | |||
1ddf98bb22 | |||
feaf3d6268 | |||
e1230f6c64 |
1 changed files with 14 additions and 14 deletions
28
Dockerfile
28
Dockerfile
|
@ -13,31 +13,31 @@ WORKDIR /usr/local/searx
|
||||||
|
|
||||||
RUN apk upgrade --no-cache \
|
RUN apk upgrade --no-cache \
|
||||||
&& apk add --no-cache -t build-dependencies \
|
&& apk add --no-cache -t build-dependencies \
|
||||||
gcc="10.2.1_pre1-r3" \
|
gcc="10.3.1_git20210424-r2" \
|
||||||
musl-dev="1.2.2-r1" \
|
musl-dev="1.2.2-r3" \
|
||||||
cargo="1.47.0-r2" \
|
cargo="1.52.0-r0" \
|
||||||
build-base="0.5-r2" \
|
build-base="0.5-r2" \
|
||||||
py3-setuptools="52.0.0-r3" \
|
py3-setuptools="52.0.0-r3" \
|
||||||
python3-dev="3.8.10-r0" \
|
python3-dev="3.9.5-r1" \
|
||||||
libffi-dev="3.3-r2" \
|
libffi-dev="3.3-r2" \
|
||||||
libxslt-dev="1.1.34-r0" \
|
libxslt-dev="1.1.34-r1" \
|
||||||
libxml2-dev="2.9.10-r7" \
|
libxml2-dev="2.9.12-r1" \
|
||||||
openssl-dev="1.1.1k-r0" \
|
openssl-dev="1.1.1k-r0" \
|
||||||
tar="1.34-r0" \
|
tar="1.34-r0" \
|
||||||
git="2.30.2-r0" \
|
git="2.32.0-r0" \
|
||||||
curl="7.77.0-r1" \
|
curl="7.77.0-r1" \
|
||||||
&& apk add --no-cache \
|
&& apk add --no-cache \
|
||||||
ca-certificates="20191127-r5" \
|
ca-certificates="20191127-r5" \
|
||||||
su-exec="0.2-r1" \
|
su-exec="0.2-r1" \
|
||||||
python3="3.8.10-r0" \
|
python3="3.9.5-r1" \
|
||||||
py3-pip="20.3.4-r0" \
|
py3-pip="20.3.4-r1" \
|
||||||
libxml2="2.9.10-r7" \
|
libxml2="2.9.12-r1" \
|
||||||
libxslt="1.1.34-r0" \
|
libxslt="1.1.34-r1" \
|
||||||
openssl="1.1.1k-r0" \
|
openssl="1.1.1k-r0" \
|
||||||
tini="0.19.0-r0" \
|
tini="0.19.0-r0" \
|
||||||
uwsgi="2.0.19.1-r1" \
|
uwsgi="2.0.19.1-r2" \
|
||||||
uwsgi-python3="2.0.19.1-r1" \
|
uwsgi-python3="2.0.19.1-r2" \
|
||||||
brotli="1.0.9-r3" \
|
brotli="1.0.9-r5" \
|
||||||
&& curl -L "https://github.com/searx/searx/archive/${SEARX_VERSION}.tar.gz" | tar xvz --strip 1 && chown -R searx:searx * \
|
&& curl -L "https://github.com/searx/searx/archive/${SEARX_VERSION}.tar.gz" | tar xvz --strip 1 && chown -R searx:searx * \
|
||||||
&& pip3 install --upgrade pip \
|
&& pip3 install --upgrade pip \
|
||||||
&& pip3 install --no-cache -r requirements.txt \
|
&& pip3 install --no-cache -r requirements.txt \
|
||||||
|
|
Reference in a new issue