You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
452 B
26 lines
452 B
|
3 months ago
|
FROM python:3.11-slim
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
# 安装系统依赖
|
||
|
|
RUN apt-get update && apt-get install -y \
|
||
|
|
gcc \
|
||
|
|
g++ \
|
||
|
|
&& rm -rf /var/lib/apt/lists/*
|
||
|
|
|
||
|
|
# 安装 Python 依赖
|
||
|
|
RUN pip install --no-cache-dir \
|
||
|
|
akshare \
|
||
|
|
fastapi \
|
||
|
|
uvicorn \
|
||
|
|
pandas \
|
||
|
|
numpy
|
||
|
|
|
||
|
|
# 创建启动脚本
|
||
|
|
COPY main.py /app/main.py
|
||
|
|
|
||
|
|
EXPOSE 8000
|
||
|
|
|
||
|
|
# 启动 AKShare HTTP 服务
|
||
|
|
CMD ["python", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]
|