mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
66 lines
2.6 KiB
Docker
66 lines
2.6 KiB
Docker
FROM python:3.11-slim-bullseye as builder
|
|
|
|
ENTRYPOINT ["/sbin/tini","--","/usr/local/searxng/dockerfiles/docker-entrypoint.sh"]
|
|
EXPOSE 8080
|
|
VOLUME /etc/searxng
|
|
|
|
RUN addgroup --gid 977 searxng && \
|
|
adduser -uid 977 --disabled-password --home /usr/local/searxng --shell /bin/sh --ingroup searxng searxng
|
|
|
|
ENV INSTANCE_NAME=searxng \
|
|
AUTOCOMPLETE= \
|
|
BASE_URL= \
|
|
MORTY_KEY= \
|
|
MORTY_URL= \
|
|
GPTKEY= \
|
|
GPTORG= \
|
|
SEARXNG_SETTINGS_PATH=/etc/searxng/settings.yml \
|
|
UWSGI_SETTINGS_PATH=/etc/searxng/uwsgi.ini \
|
|
PATH="/root/.cargo/bin:${PATH}"
|
|
|
|
WORKDIR /usr/local/searxng
|
|
|
|
COPY requirements.txt ./requirements.txt
|
|
|
|
RUN apt-get update && apt-get install -y git gcc curl && curl https://sh.rustup.rs -sSf | sh -s -- -y && apt-get install --reinstall libc6-dev -y && pip3 install --no-cache -r requirements.txt \
|
|
&& rm -rf /root/.cache
|
|
|
|
COPY --chown=searxng:searxng dockerfiles ./dockerfiles
|
|
COPY --chown=searxng:searxng searx ./searx
|
|
|
|
ARG TIMESTAMP_SETTINGS=0
|
|
ARG TIMESTAMP_UWSGI=0
|
|
ARG VERSION_GITCOMMIT=unknown
|
|
|
|
RUN su searxng -c "/usr/local/bin/python -m compileall -q searx" \
|
|
&& touch -c --date=@${TIMESTAMP_SETTINGS} searx/settings.yml \
|
|
&& touch -c --date=@${TIMESTAMP_UWSGI} dockerfiles/uwsgi.ini \
|
|
&& find /usr/local/searxng/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 {} \+
|
|
|
|
# Keep these arguments at the end to prevent redundant layer rebuilds
|
|
ARG LABEL_DATE=
|
|
ARG GIT_URL=unknown
|
|
ARG SEARXNG_GIT_VERSION=unknown
|
|
ARG SEARXNG_DOCKER_TAG=unknown
|
|
ARG LABEL_VCS_REF=
|
|
ARG LABEL_VCS_URL=
|
|
LABEL maintainer="searxng <${GIT_URL}>" \
|
|
description="A privacy-respecting, hackable metasearch engine." \
|
|
version="${SEARXNG_GIT_VERSION}" \
|
|
org.label-schema.schema-version="1.0" \
|
|
org.label-schema.name="searxng" \
|
|
org.label-schema.version="${SEARXNG_GIT_VERSION}" \
|
|
org.label-schema.url="${LABEL_VCS_URL}" \
|
|
org.label-schema.vcs-ref=${LABEL_VCS_REF} \
|
|
org.label-schema.vcs-url=${LABEL_VCS_URL} \
|
|
org.label-schema.build-date="${LABEL_DATE}" \
|
|
org.label-schema.usage="https://github.com/searxng/searxng-docker" \
|
|
org.opencontainers.image.title="searxng" \
|
|
org.opencontainers.image.version="${SEARXNG_DOCKER_TAG}" \
|
|
org.opencontainers.image.url="${LABEL_VCS_URL}" \
|
|
org.opencontainers.image.revision=${LABEL_VCS_REF} \
|
|
org.opencontainers.image.source=${LABEL_VCS_URL} \
|
|
org.opencontainers.image.created="${LABEL_DATE}" \
|
|
org.opencontainers.image.documentation="https://github.com/searxng/searxng-docker"
|