Switching to an ApplicationJob based app

This commit is contained in:
Matteo Bertucci
2021-01-14 16:39:26 +01:00
parent b8c4a114f6
commit d44c8d0a71
7 changed files with 98 additions and 54 deletions

View File

@ -2,7 +2,7 @@ FROM python:3.9-slim
WORKDIR /app
ENTRYPOINT ["python3", "-m", "cloudflare-ddns"]
ENTRYPOINT ["python3", "-m", "cloudflare_ddns"]
CMD []
# Install requirements in a separate step to not rebuild everything when the requirements are updated.