AI-Character-Chat / Dockerfile
Lyon28's picture
Update Dockerfile
095abf1 verified
raw
history blame contribute delete
335 Bytes
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"]