Dockerfile-gl 370 B

12345678
  1. FROM python:3.12-slim
  2. ENV http_proxy=http://192.168.0.50:7890
  3. ENV https_proxy=http://192.168.0.50:7890
  4. # 先临时关闭校验,安装必要工具
  5. RUN apt-get update -o Acquire::AllowInsecureRepositories=true -o Acquire::AllowUnsigned=true && \
  6. apt-get install -y --no-install-recommends --allow-unauthenticated libglib2.0-0 libgl1 && rm -rf /var/lib/apt/lists/*