Files
web_server/searxng/Dockerfile
Adam French c4c642073d
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 9s
Replace envsubst with sed in searxng entrypoint to avoid extra dependencies
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-04-07 14:10:03 +01:00

9 lines
205 B
Docker

FROM searxng/searxng:latest
COPY settings.yml.template /searxng/settings.yml.template
COPY entrypoint.sh /searxng/entrypoint.sh
RUN chmod +x /searxng/entrypoint.sh
ENTRYPOINT ["/searxng/entrypoint.sh"]