42 lines
1002 B
Docker
42 lines
1002 B
Docker
FROM python:3.12-slim
|
||
|
||
# 设置工作目录
|
||
WORKDIR /app
|
||
|
||
# 设置环境变量
|
||
ENV PYTHONDONTWRITEBYTECODE=1 \
|
||
PYTHONUNBUFFERED=1 \
|
||
PIP_NO_CACHE_DIR=1 \
|
||
PIP_DISABLE_PIP_VERSION_CHECK=1
|
||
|
||
# 安装系统依赖
|
||
RUN apt-get update && apt-get install -y \
|
||
--no-install-recommends \
|
||
curl \
|
||
&& rm -rf /var/lib/apt/lists/*
|
||
|
||
# 复制并安装Python依赖
|
||
COPY requirements.txt .
|
||
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
||
# 复制应用代码
|
||
COPY . .
|
||
|
||
# 创建上传文件目录和设置权限
|
||
RUN mkdir -p uploads && \
|
||
chmod 755 uploads
|
||
|
||
# 创建非root用户(安全性改进)
|
||
RUN useradd --create-home --shell /bin/bash app && \
|
||
chown -R app:app /app
|
||
USER app
|
||
|
||
# 暴露端口
|
||
EXPOSE 8888
|
||
|
||
# 健康检查
|
||
HEALTHCHECK --interval=30s --timeout=30s --start-period=5s --retries=3 \
|
||
CMD curl -f http://localhost:8888/health || exit 1
|
||
|
||
# 启动命令
|
||
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8888", "--proxy-headers", "--forwarded-allow-ips", "*"] |