fix: missing shebang
This commit is contained in:
parent
d46932b14b
commit
903418192d
2 changed files with 3 additions and 1 deletions
|
@ -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
|
# expose port and set tini as CMD; default user is searxng
|
||||||
USER searxng
|
USER searxng
|
||||||
EXPOSE 8080
|
EXPOSE 8080
|
||||||
CMD ["/sbin/tini","--","run.sh"]
|
CMD ["/sbin/tini","--","/usr/local/bin/run.sh"]
|
|
@ -1,2 +1,4 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
# start uwsgi with SearXNG workload
|
# start uwsgi with SearXNG workload
|
||||||
exec uwsgi --master --http-socket "0.0.0.0:8080" "/etc/uwsgi/uwsgi.ini"
|
exec uwsgi --master --http-socket "0.0.0.0:8080" "/etc/uwsgi/uwsgi.ini"
|
Loading…
Reference in a new issue