feat: vendor-product-category matrix with infra/ib modes and docker setup

This commit is contained in:
2026-04-14 20:57:26 +00:00
commit 0b3cc949c3
10 changed files with 1761 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM python:3.12-slim
WORKDIR /app
ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5000
CMD ["python", "main.py"]