Spaces:
Running
Running
File size: 321 Bytes
e843bcb 77f6efb e843bcb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM python:3.10
RUN apt-get update && apt-get install -y git
RUN pip install --no-cache-dir \
gradio>=4.44.0 \
pandas>=2.0.0 \
datasets>=2.16.0 \
huggingface_hub>=0.20.0 \
uvicorn>=0.23.0 \
fastapi \
spaces
COPY app.py /app/app.py
CMD ["python", "/app/app.py"] |