feat: Add health check and diagnostics to launch_dev.sh for improved reliability

Co-authored-by: Copilot <copilot@github.com>
This commit is contained in:
2026-04-27 20:37:35 +02:00
parent ba0e88ced7
commit fe578d490d
3 changed files with 68 additions and 0 deletions
+3
View File
@@ -36,6 +36,9 @@ RUN set -eu; \
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
# Copy application sources into the image (templates, static, main app, config)
COPY . /app
EXPOSE 4999
CMD ["gunicorn", "-c", "gunicorn.conf.py", "main:app"]