Bio-QA-Agent / Dockerfile
jackkuo's picture
update
4df1400
Raw
History Blame
255 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
# Hugging Face Space 必须监听 7860 端口
# 用 supervisor 同时跑 FastAPI(8008) + Gradio(7860)
CMD ["supervisord", "-c", "supervisord.conf"]