39b2182
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM python:3.11 WORKDIR /app RUN mkdir -p /app/hf_cache RUN chmod -R 777 /app/hf_cache ENV HF_HOME=/app/hf_cache COPY ./requirements.txt . RUN pip install --no-cache-dir -r requirements.txt COPY . . EXPOSE 7860 CMD ["python", "server.py"]