Duplicated from gabrielchua/open-notebooklm
2e2148b 5e89640
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 main:app