Spaces:
Sleeping
Sleeping
File size: 267 Bytes
47dae75 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
FROM python:3.13.5
WORKDIR /app
COPY . /app/
RUN mkdir -p /app/hf_cache /app/models
RUN chmod -R 777 /app/hf_cache /app/models
ENV HF_HOME=/app/hf_cache
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["python", "server.py"]
|