| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 | FROM alpine:3.10ENTRYPOINT ["/sbin/tini","--","/usr/local/searx/dockerfiles/docker-entrypoint.sh"]EXPOSE 8080VOLUME /etc/searxVOLUME /var/log/uwsgiARG GIT_URL=unknownARG VERSION_GITCOMMIT=unknownARG SEARX_GIT_VERSION=unknownARG SEARX_GID=977ARG SEARX_UID=977RUN addgroup -g ${SEARX_GID} searx && \    adduser -u ${SEARX_UID} -D -h /usr/local/searx -s /bin/sh -G searx searxARG TIMESTAMP_SETTINGS=0ARG TIMESTAMP_UWSGI=0ARG LABEL_VCS_REF=ARG LABEL_VCS_URL=ENV INSTANCE_NAME=searx \    AUTOCOMPLETE= \    BASE_URL= \    MORTY_KEY= \    MORTY_URL=WORKDIR /usr/local/searxCOPY requirements.txt ./requirements.txtRUN apk upgrade --no-cache \ && apk add --no-cache -t build-dependencies \    build-base \    py3-setuptools \    python3-dev \    libffi-dev \    libxslt-dev \    libxml2-dev \    openssl-dev \    tar \    git \ && apk add --no-cache \    ca-certificates \    su-exec \    python3 \    libxml2 \    libxslt \    openssl \    tini \    uwsgi \    uwsgi-python3 \ && pip3 install --upgrade pip \ && pip3 install --no-cache -r requirements.txt \ && apk del build-dependenciesCOPY --chown=searx:searx . .RUN su searx -c "/usr/bin/python3 -m compileall -q searx"; \    touch -c --date=@${TIMESTAMP_SETTINGS} searx/settings.yml; \    touch -c --date=@${TIMESTAMP_UWSGI} dockerfiles/uwsgi.ini; \    if [ ! -z $VERSION_GITCOMMIT ]; then\      echo "VERSION_STRING = VERSION_STRING + \"-$VERSION_GITCOMMIT\"" >> /usr/local/searx/searx/version.py; \    fi# Keep this argument at the end since it change each timeARG LABEL_DATE=LABEL maintainer="searx <${GIT_URL}>" \      description="A privacy-respecting, hackable metasearch engine." \      version="${SEARX_GIT_VERSION}" \      org.label-schema.schema-version="1.0" \      org.label-schema.name="searx" \      org.label-schema.version="${SEARX_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/searx/searx-docker" \      org.opencontainers.image.title="searx" \      org.opencontainers.image.version="${SEARX_GIT_VERSION}" \      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/searx/searx-docker"
 |