| FROM python:3.9 | |
| WORKDIR /app | |
| COPY . /app | |
| ENV HF_HOME=/app/.cache | |
| RUN mkdir -p /app/.cache/huggingface/hub && \ | |
| chmod -R 777 /app/.cache && \ | |
| chmod -R 777 /app/.cache/huggingface | |
| RUN pip install --upgrade pip | |
| RUN pip install --no-cache-dir -r requirements.txt | |
| COPY --chown=user ./requirements.txt requirements.txt | |
| RUN pip install --no-cache-dir --upgrade -r requirements.txt | |
| EXPOSE 7860 | |
| CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"] | |