Files
ailine/docker/Dockerfile.frontend
root 8eccec3fb8
Some checks failed
构建并部署 AI Agent 服务 / deploy (push) Failing after 1m25s
feat: 适配 Nginx /ai/ 路径前缀
2026-04-14 02:37:42 +08:00

16 lines
326 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirement.txt .
RUN pip install --no-cache-dir -r requirement.txt
COPY frontend/ ./frontend/
COPY app/ ./app/
ENV PYTHONPATH=/app
EXPOSE 8501
CMD ["streamlit", "run", "frontend/frontend.py", "--server.port", "8501", "--server.address", "0.0.0.0", "--server.baseUrlPath", "/ai"]