Merge pull request #31 from bcye/feature/entrypoint.sh

Move Docker CMD to Entrypoint
This commit is contained in:
Bruce
2025-09-29 14:36:28 +02:00
committed by GitHub
2 changed files with 5 additions and 1 deletions

View File

@@ -7,4 +7,6 @@ RUN uv sync --frozen
COPY . .
CMD ["uv", "run", "main.py"]
RUN chmod +x entrypoint.sh
CMD ["./entrypoint.sh"]

2
entrypoint.sh Normal file
View File

@@ -0,0 +1,2 @@
#!/bin/bash
uv run main.py