Dockerfile 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # 使用Python 3.11.11作为基础镜像
  2. FROM python:3.11.11-slim
  3. # FROM swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/wallies/python-cuda:3.11-cuda11.8-runtime
  4. # FROM registry.cn-hangzhou.aliyuncs.com/serverless_devs/pytorch:22.12-py3
  5. RUN pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
  6. # RUN sed -i 's|http://archive.ubuntu.com/ubuntu|http://mirrors.aliyun.com/ubuntu|g' /etc/apt/sources.list && \
  7. # sed -i 's|http://security.ubuntu.com/ubuntu|http://mirrors.aliyun.com/ubuntu|g' /etc/apt/sources.list
  8. # 设置环境变量,避免交互式安装时的提示
  9. # 设置工作目录
  10. WORKDIR /app
  11. # 设置环境变量
  12. ENV PYTHONUNBUFFERED=1 \
  13. PYTHONDONTWRITEBYTECODE=1 \
  14. PIP_NO_CACHE_DIR=1
  15. # 安装系统依赖
  16. RUN apt-get update && apt-get install -y --no-install-recommends \
  17. build-essential \
  18. libmagic1 \
  19. && rm -rf /var/lib/apt/lists/*
  20. # 复制项目文件
  21. COPY . .
  22. ENV MONGODB=mongodb://root:root@172.31.69.25:37018/
  23. # 安装Python依赖
  24. RUN pip install --no-cache-dir -r requirements.txt
  25. EXPOSE 5000
  26. # 设置默认命令
  27. CMD ["python", "app.py"]