Start integrating the onboarding flow with backend 16

This commit is contained in:
Urtzi Alfaro
2025-09-07 23:16:49 +02:00
parent 4c5bc0b636
commit 54102f7f4b
3 changed files with 4 additions and 22 deletions

View File

@@ -27,7 +27,7 @@ EXPOSE 8000
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=60s --retries=3 \
CMD python -c "import requests; requests.get('http://localhost:8000/health/', timeout=5)" || exit 1
CMD python -c "import requests; requests.get('http://localhost:8000/health', timeout=5)" || exit 1
# Run the application
CMD ["python", "-m", "uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]