NotaGen / Dockerfile
ElectricAlexis's picture
Update Dockerfile
0bf4759 verified
raw
history blame
210 Bytes
FROM python:3.10-slim
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt && \
pip install --no-cache-dir gradio==5.29.0 "uvicorn>=0.14.0" spaces
COPY . .
CMD ["python", "app.py"]