File size: 204 Bytes
89019a3
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.12-slim

RUN pip install uv
RUN uv venv

COPY requirements.txt .
RUN uv pip install -r requirements.txt

COPY . .

CMD .venv/bin/granian --interface asgi --port 8080 --host 0.0.0.0  app:app