Revert "update entrypoint.sh"

This reverts commit 2ed41ab4ca.
This commit is contained in:
Léo Haf 2025-04-29 12:13:26 +02:00
parent 2ed41ab4ca
commit 43ec499b8a
Signed by: Retropex
GPG Key ID: F5073C4F4882FFFC
2 changed files with 4 additions and 2 deletions

View File

@ -18,4 +18,6 @@ ADD ./docker_entrypoint.sh /usr/local/bin/docker_entrypoint.sh
RUN chmod a+x /usr/local/bin/docker_entrypoint.sh RUN chmod a+x /usr/local/bin/docker_entrypoint.sh
ENV FLASK_ENV=production ENV FLASK_ENV=production
ENV PYTHONUNBUFFERED=1 ENV PYTHONUNBUFFERED=1
CMD ["gunicorn", "-b", "0.0.0.0:5000", "App:app"]

View File

@ -2,4 +2,4 @@
printf "\n\n [i] Starting DeepSea dashboard ...\n\n" printf "\n\n [i] Starting DeepSea dashboard ...\n\n"
exec gunicorn -b 0.0.0.0:5000 App:app exec python3 App.py