7 lines
445 B
Docker
7 lines
445 B
Docker
FROM docker.io/searxng/searxng:latest
|
|
|
|
# copy custom simple theme css, run.sh and limiter config
|
|
COPY --from=docker.io/paulgoio/searxng:production /usr/local/searxng/searx/static/themes/simple/css/ /usr/local/searxng/searx/static/themes/simple/css/
|
|
COPY --from=docker.io/paulgoio/searxng:production /usr/local/bin/run.sh /usr/local/bin/run.sh
|
|
COPY --from=docker.io/paulgoio/searxng:production /etc/searxng/limiter.toml /etc/searxng/limiter.toml
|