fix: missing shebang

This commit is contained in:
azyrite 2025-02-15 23:32:49 +11:00
parent d46932b14b
commit 903418192d
Signed by: azyrite
SSH key fingerprint: SHA256:YlQ5V4DtSbnuUxJxw4cwU7L9q8NbeAOAsK4NZWybTkM
2 changed files with 3 additions and 1 deletions

View file

@ -64,4 +64,4 @@ find /usr/local/searxng/searx/static -a \( -name '*.html' -o -name '*.css' -o -n
# expose port and set tini as CMD; default user is searxng
USER searxng
EXPOSE 8080
CMD ["/sbin/tini","--","run.sh"]
CMD ["/sbin/tini","--","/usr/local/bin/run.sh"]

View file

@ -1,2 +1,4 @@
#!/bin/sh
# start uwsgi with SearXNG workload
exec uwsgi --master --http-socket "0.0.0.0:8080" "/etc/uwsgi/uwsgi.ini"