File size: 220 Bytes
97b6fec
42ee455
 
 
97b6fec
 
 
42ee455
97b6fec
1
2
3
4
5
6
7
8
9
FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim

WORKDIR /app

COPY requirements.txt .
RUN uv pip sync --system requirements.txt
COPY . .

ENTRYPOINT ["gunicorn", "app:app", "--workers", "4", "--bind", "0.0.0.0:7860"]