feat: production stack (gunicorn+nginx) and infra product URL import

This commit is contained in:
2026-04-14 21:20:11 +00:00
parent 69684b59cf
commit f74298e3fd
6 changed files with 176 additions and 12 deletions

View File

@@ -10,6 +10,6 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5000
EXPOSE 8000
CMD ["python", "main.py"]
CMD ["gunicorn", "-w", "3", "-b", "0.0.0.0:8000", "main:app", "--timeout", "60"]