MoE-CAP-Dashboard / Dockerfile
jing084's picture
Update Dockerfile
77f6efb verified
raw
history blame contribute delete
321 Bytes
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"]