diff --git a/Dockerfile b/Dockerfile index 161a820..110a0a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,4 +7,6 @@ RUN uv sync --frozen COPY . . -CMD ["uv", "run", "main.py"] \ No newline at end of file +RUN chmod +x entrypoint.sh + +CMD ["./entrypoint.sh"] diff --git a/entrypoint.sh b/entrypoint.sh new file mode 100644 index 0000000..2d7e452 --- /dev/null +++ b/entrypoint.sh @@ -0,0 +1,2 @@ +#!/bin/bash +uv run main.py \ No newline at end of file