Opnxng
1040fa7f6f
Some checks failed
wolfree / build (push) Failing after 9s
simplytranslate / build (push) Failing after 6s
searxng / build-searxng (push) Failing after 5s
rat-aint-tieba / build (push) Failing after 9s
proxigram / build (push) Failing after 28s
priviblur / build (push) Failing after 5s
imgin / build (push) Failing after 7s
binternet / build (push) Successful in 28s
10 lines
510 B
Docker
10 lines
510 B
Docker
FROM docker.io/searxng/searxng:latest
|
|
|
|
# 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. (Static files are already precompiled in the source images)
|
|
WORKDIR /usr/local/searxng
|
|
RUN su searxng -c "/usr/bin/python3 -m compileall -q searx";
|