label-studio-ml-backend
label-studio-ml-backend copied to clipboard
exec /app/start.sh: no such file or directory
When I am trying to use humansignal/ml-backend:v0 , this happens please help...
2025-04-06 18:29:37 exec /app/start.sh: no such file or directory
2025-04-06 18:32:52 exec /app/start.sh: no such file or directory
2025-04-06 18:42:39 exec /app/start.sh: no such file or directory
I was able to get around this by changing the last line in the Dockerfile to this like the other examples:
Remove -> CMD ["/app/start.sh"] CMD gunicorn --preload --bind :$PORT --workers 1 --threads 8 --timeout 0 _wsgi:app
I was able to get around this by changing the last line in the Dockerfile to this like the other examples:
Remove -> CMD ["/app/start.sh"] CMD gunicorn --preload --bind :$PORT --workers 1 --threads 8 --timeout 0 _wsgi:app
This works! Love