All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 9s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
205 B
Docker
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"]
|