fix: run as python -m app.main to fix ModuleNotFoundError

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-13 16:27:29 +02:00
parent b2e7a2f2db
commit 2db95cc727
2 changed files with 2 additions and 2 deletions

View File

@@ -13,4 +13,4 @@ COPY app/ ./app/
EXPOSE 6677
CMD ["python", "app/main.py"]
CMD ["python", "-m", "app.main"]