Some checks failed
Deploy with Docker Compose / deploy (push) Failing after 6s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
10 lines
236 B
Docker
10 lines
236 B
Docker
FROM searxng/searxng:latest
|
|
|
|
RUN apk add --no-cache gettext
|
|
|
|
COPY settings.yml.template /searxng/settings.yml.template
|
|
COPY entrypoint.sh /searxng/entrypoint.sh
|
|
RUN chmod +x /searxng/entrypoint.sh
|
|
|
|
ENTRYPOINT ["/searxng/entrypoint.sh"]
|