Sets the --noreload argument for runserver so that container can be stopped with CTRL-C

This commit is contained in:
Luca Ferroni 2024-12-21 17:08:26 +01:00
parent 59282ab8b4
commit a92c3be3e2

View File

@ -43,4 +43,4 @@ FROM python-run-stage AS backend
COPY . ${APP_HOME}
ENTRYPOINT ["/entrypoint"]
CMD ["python3", "demo/manage.py", "runserver", "0.0.0.0:8080"]
CMD ["python3", "demo/manage.py", "runserver", "--noreload", "0.0.0.0:8080"]