54 lines
1.9 KiB
Docker
54 lines
1.9 KiB
Docker
ARG ARCH
|
|
FROM amd64/alpine:3.13.1@sha256:3747d4eb5e7f0825d54c8e80452f1e245e24bd715972c919d189a62da97af2ae AS base-amd64
|
|
FROM arm32v7/alpine:3.13.1@sha256:817f5bc4194eccd71ad9afe9c2eb7e73a5841180a88a385229bd38ab6daf005b AS base-arm
|
|
FROM arm64v8/alpine:3.13.1@sha256:019c59128325536e838a5f36028db214335129f9aa83214cc2c60c10dc1797ac AS base-arm64
|
|
FROM base-${ARCH}
|
|
|
|
ENTRYPOINT ["/sbin/tini","--","/usr/local/searx/dockerfiles/docker-entrypoint.sh"]
|
|
EXPOSE 8080
|
|
VOLUME /etc/searx
|
|
VOLUME /var/log/uwsgi
|
|
|
|
RUN addgroup searx && adduser -D -h /usr/local/searx -s /bin/sh -G searx searx
|
|
|
|
ENV SEARX_VERSION="v0.18.0"
|
|
ENV INSTANCE_NAME=searx
|
|
|
|
WORKDIR /usr/local/searx
|
|
|
|
RUN apk upgrade --no-cache \
|
|
&& apk add --no-cache -t build-dependencies \
|
|
build-base="0.5-r2" \
|
|
py3-setuptools="47.0.0-r0" \
|
|
python3-dev="3.8.5-r0" \
|
|
libffi-dev="3.3-r2" \
|
|
libxslt-dev="1.1.34-r0" \
|
|
libxml2-dev="2.9.10-r5" \
|
|
openssl-dev="1.1.1i-r0" \
|
|
tar="1.32-r1" \
|
|
git="2.26.2-r0" \
|
|
curl="7.69.1-r3" \
|
|
&& apk add --no-cache \
|
|
ca-certificates="20191127-r4" \
|
|
su-exec="0.2-r1" \
|
|
python3="3.8.5-r0" \
|
|
py3-pip="20.1.1-r0" \
|
|
libxml2="2.9.10-r5" \
|
|
libxslt="1.1.34-r0" \
|
|
openssl="1.1.1i-r0" \
|
|
tini="0.19.0-r0" \
|
|
uwsgi="2.0.18-r8" \
|
|
uwsgi-python3="2.0.18-r8" \
|
|
brotli="1.0.9-r1" \
|
|
&& 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 --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 {} \+
|