| 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"] |
| 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"] |