# FROM docker.io/searxng/searxng:latest # Pin to last working version with hostname plugin # https://github.com/searxng/searxng/issues/4263 FROM docker.io/searxng/searxng:2025.1.26-70f1b6500 # copy custom simple theme css and limiter.toml from the PaulGo fork COPY --from=docker.io/paulgoio/searxng:production /etc/searxng/limiter.toml /etc/searxng/limiter.toml COPY --from=docker.io/paulgoio/searxng:production /usr/local/searxng/searx/static/themes/ /usr/local/searxng/searx/static/themes/ # Compile into .pyc files. (Static files are already precompiled in the source images) WORKDIR /usr/local/searxng RUN su searxng -c "/usr/bin/python3 -m compileall -q searx";