MO-AI-Research's picture
Upload 4 files
b2c1ba7 verified
Raw
History Blame Contribute Delete
328 Bytes
FROM python:3.11-slim
WORKDIR /app
# HF Spaces sets HOME=/home/user; give the hub a writable cache dir.
ENV HF_HOME=/tmp/hf_cache \
PYTHONUNBUFFERED=1
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]