File size: 221 Bytes
c079093
34d45eb
 
 
c079093
 
 
34d45eb
c079093
1
2
3
4
5
6
7
8
9
10
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"]