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.
|
|
|
|
FROM python:3.11-slim
|
|
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
|
|
# 安装系统依赖
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
|
gcc \
|
|
|
|
|
g++ \
|
|
|
|
|
default-libmysqlclient-dev \
|
|
|
|
|
pkg-config \
|
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
|
|
|
|
# 复制依赖文件
|
|
|
|
|
COPY requirements.txt .
|
|
|
|
|
|
|
|
|
|
# 安装 Python 依赖
|
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
|
|
|
|
|
# 复制应用代码
|
|
|
|
|
COPY database.py .
|
|
|
|
|
COPY data_sync.py .
|
|
|
|
|
COPY main_api.py .
|
|
|
|
|
|
|
|
|
|
# 暴露端口
|
|
|
|
|
EXPOSE 8000
|
|
|
|
|
|
|
|
|
|
# 健康检查
|
|
|
|
|
HEALTHCHECK --interval=30s --timeout=10s --start-period=40s --retries=3 \
|
|
|
|
|
CMD python -c "import urllib.request; urllib.request.urlopen('http://localhost:8000/')" || exit 1
|
|
|
|
|
|
|
|
|
|
# 启动服务
|
|
|
|
|
CMD ["python", "-m", "uvicorn", "main_api:app", "--host", "0.0.0.0", "--port", "8000", "--workers", "1"]
|