biruu-chatbot-api / Dockerfile
Ogghey's picture
Create Dockerfile
79ad208 verified
raw
history blame
250 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Jalankan FastAPI di port 7860 (standar Hugging Face Spaces)
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]