fixes ctrl+c on docker run

This commit is contained in:
ThePhaseless
2025-04-17 11:38:52 +00:00
parent fe797ba2ac
commit 1fa6b66f3a
3 changed files with 2 additions and 5 deletions
+1 -1
View File
@@ -37,4 +37,4 @@ FROM base
EXPOSE 8191
HEALTHCHECK --interval=15m --timeout=30s --start-period=5s --retries=3 CMD [ "curl", "http://localhost:8191/health" ]
CMD ["./cmd.sh"]
ENTRYPOINT ["uv", "run", "main.py"]
+1 -1
View File
@@ -63,7 +63,7 @@ docker run -p 8191:8191 ghcr.io/thephaseless/byparr:latest
### Local
```bash
uv sync && ./cmd.sh
uv sync && uv run main.py
```
## Need help with / TODO
-3
View File
@@ -1,3 +0,0 @@
#!/bin/sh
uv run main.py