diff --git a/Dockerfile b/Dockerfile index 1e35686..dbd9bec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"] \ No newline at end of file +ENTRYPOINT ["uv", "run", "main.py"] diff --git a/README.md b/README.md index 7e9959a..6550971 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/cmd.sh b/cmd.sh deleted file mode 100755 index 2e41efc..0000000 --- a/cmd.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -uv run main.py \ No newline at end of file