File size: 220 Bytes
8905c29
eee06ed
 
 
8905c29
 
 
eee06ed
8905c29
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"]