Spaces:
Runtime error
Runtime error
File size: 259 Bytes
e32e614 1dc228c 055c3d7 0259f97 1dc228c e32e614 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# ✅ Create a writable Hugging Face cache directory
RUN mkdir -p /app/hf_cache && chmod -R 777 /app/hf_cache
COPY app.py .
CMD ["python", "app.py"]
|