Spaces:
Running
Running
FROM python:3.9-slim | |
WORKDIR /app | |
COPY . . | |
RUN pip install --no-cache-dir -r requirements.txt | |
# Menyetel HF_HOME environment variable untuk cache model Hugging Face | |
ENV HF_HOME /app/.cache/huggingface | |
RUN mkdir -p /app/.cache/huggingface && chmod -R 777 /app/.cache | |
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"] |