update entrypoint.sh

This commit is contained in:
Léo Haf 2025-04-29 11:48:16 +02:00
parent e8ec109cd7
commit 2ed41ab4ca
Signed by: Retropex
GPG Key ID: F5073C4F4882FFFC
2 changed files with 2 additions and 4 deletions

View File

@ -18,6 +18,4 @@ 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 python3 App.py exec gunicorn -b 0.0.0.0:5000 App:app