beryl-chat-api / Dockerfile
AIBRUH
Direct HF Inference API call (resolves inside HF network) + Qwen72B auto-fallback
b245453
Raw
History Blame Contribute Delete
188 Bytes
FROM python:3.11-slim
WORKDIR /app
RUN pip install --no-cache-dir fastapi uvicorn requests
COPY app.py .
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]