open-notebooklm / Dockerfile
knowsuchagency's picture
chore: Update Dockerfile and docker-compose.yml for Gradio server port configuration
f9493cb
raw
history blame
222 Bytes
FROM python:3.12-slim
RUN pip install uv
RUN uv venv
COPY requirements.txt .
RUN uv pip install -r requirements.txt
COPY . .
ENV GRADIO_SERVER_NAME="0.0.0.0"
ENV GRADIO_SERVER_PORT="8080"
CMD .venv/bin/python main.py