for merge

This commit is contained in:
djeon
2025-10-30 10:25:40 +09:00
110 changed files with 93 additions and 12491 deletions
+3 -3
View File
@@ -49,11 +49,11 @@ ENV PATH="/opt/venv/bin:$PATH"
USER ${USERNAME}
# Expose port
EXPOSE 8088
EXPOSE 8080
# Health check
HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \
CMD python -c "import requests; requests.get('http://localhost:8088/health')" || exit 1
CMD python -c "import requests; requests.get('http://localhost:8080/health')" || exit 1
# Run the application
CMD ["uvicorn", "src.api.main:app", "--host", "0.0.0.0", "--port", "8088"]
CMD ["uvicorn", "src.api.main:app", "--host", "0.0.0.0", "--port", "8080"]