This repository has been archived on 2022-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
searx/Dockerfile

53 lines
1.7 KiB
Docker
Raw Normal View History

2021-11-25 05:01:57 +00:00
FROM alpine:3.15.0@sha256:21a3deaa0d32a8057914f36584b5288d2e5ecc984380bc0118285c70fa8c9300
2021-01-20 19:18:17 +00:00
RUN addgroup searx && adduser -D -h /usr/local/searx -s /bin/sh -G searx searx
2021-03-27 20:01:23 +00:00
ENV SEARX_VERSION="1.0.0"
2021-01-20 19:18:17 +00:00
ENV INSTANCE_NAME=searx
WORKDIR /usr/local/searx
RUN apk upgrade --no-cache \
&& apk add --no-cache -t build-dependencies \
2021-06-24 19:02:13 +00:00
gcc="10.3.1_git20210424-r2" \
musl-dev="1.2.2-r3" \
2021-08-12 04:01:24 +00:00
cargo="1.52.1-r1" \
2021-01-20 19:18:17 +00:00
build-base="0.5-r2" \
py3-setuptools="52.0.0-r3" \
2021-11-25 05:01:54 +00:00
python3-dev="3.9.5-r2" \
2021-01-20 19:18:17 +00:00
libffi-dev="3.3-r2" \
2021-06-24 19:02:13 +00:00
libxslt-dev="1.1.34-r1" \
libxml2-dev="2.9.12-r1" \
2021-08-25 04:03:22 +00:00
openssl-dev="1.1.1l-r0" \
2021-04-07 04:01:50 +00:00
tar="1.34-r0" \
2021-06-24 19:02:13 +00:00
git="2.32.0-r0" \
2021-09-23 04:01:16 +00:00
curl="7.79.1-r0" \
2021-01-20 19:18:17 +00:00
&& apk add --no-cache \
2021-01-30 01:10:47 +00:00
ca-certificates="20191127-r5" \
2021-01-20 19:18:17 +00:00
su-exec="0.2-r1" \
2021-11-25 05:01:54 +00:00
python3="3.9.5-r2" \
2021-06-24 19:02:13 +00:00
py3-pip="20.3.4-r1" \
libxml2="2.9.12-r1" \
libxslt="1.1.34-r1" \
2021-08-25 04:03:22 +00:00
openssl="1.1.1l-r0" \
2021-01-20 19:18:17 +00:00
tini="0.19.0-r0" \
2021-06-24 19:02:13 +00:00
uwsgi="2.0.19.1-r2" \
uwsgi-python3="2.0.19.1-r2" \
brotli="1.0.9-r5" \
2021-01-21 22:44:06 +00:00
&& curl -L "https://github.com/searx/searx/archive/${SEARX_VERSION}.tar.gz" | tar xvz --strip 1 && chown -R searx:searx * \
2021-01-20 19:18:17 +00:00
&& pip3 install --upgrade pip \
&& pip3 install --no-cache -r requirements.txt \
&& apk del build-dependencies \
&& rm -rf /root/.cache
RUN su searx -c "/usr/bin/python3 -m compileall -q searx"; \
touch -c searx/settings.yml; \
touch -c dockerfiles/uwsgi.ini; \
find /usr/local/searx/searx/static -a \( -name '*.html' -o -name '*.css' -o -name '*.js' \
-o -name '*.svg' -o -name '*.ttf' -o -name '*.eot' \) \
-type f -exec gzip -9 -k {} \+ -exec brotli --best {} \+
2021-02-01 19:13:29 +00:00
EXPOSE 8080
ENTRYPOINT ["/sbin/tini","--","/usr/local/searx/dockerfiles/docker-entrypoint.sh"]