镜像构建历史
# 2025-10-15 03:49:16 0.00B 设置默认要执行的命令
CMD ["python" "-m" "cuopt_server.cuopt_service"]
# 2025-10-15 03:49:16 0.00B 配置容器启动时运行的命令
ENTRYPOINT ["/opt/cuopt/entrypoint.sh"]
# 2025-10-15 03:49:16 197.61MB 复制新文件或目录到容器中
COPY /usr/local/cuda/lib64/libnvJitLink* /usr/local/cuda/lib64/ # buildkit
# 2025-10-15 03:49:15 455.79MB 复制新文件或目录到容器中
COPY /usr/local/cuda/lib64/libnvrtc* /usr/local/cuda/lib64/ # buildkit
# 2025-10-15 03:49:12 58.82KB 复制新文件或目录到容器中
COPY ./LICENSE ./VERSION ./THIRD_PARTY_LICENSES ./COMMIT_SHA /opt/cuopt/ # buildkit
# 2025-10-15 03:49:12 0.00B 设置工作目录为/opt/cuopt
WORKDIR /opt/cuopt
# 2025-10-15 03:49:12 1.10GB 执行命令并创建新的镜像层
RUN |1 PYTHON_SHORT_VER=3.13 /bin/sh -c mkdir -p /opt/cuopt && chmod 777 /opt/cuopt && echo '#!/bin/bash' > /etc/profile.d/cuopt.sh && echo 'export PATH="/usr/local/cuda/bin:/usr/bin:/usr/local/bin:/usr/local/nvidia/bin/:/usr/local/lib/python${PYTHON_SHORT_VER}/dist-packages/libcuopt/bin:$PATH"' >> /etc/profile.d/cuopt.sh && echo 'export LD_LIBRARY_PATH="/usr/lib/x86_64-linux-gnu:/usr/lib/aarch64-linux-gnu:/usr/local/cuda/lib64:/usr/local/nvidia/lib:/usr/local/nvidia/lib64:/usr/lib/wsl/lib:/usr/lib/wsl/lib/libnvidia-container:/usr/lib/nvidia:/usr/lib/nvidia-current:/usr/local/lib/python${PYTHON_SHORT_VER}/dist-packages/libcuopt/lib/:/usr/local/lib/python${PYTHON_SHORT_VER}/dist-packages/rapids_logger/lib64:${LD_LIBRARY_PATH}"' >> /etc/profile.d/cuopt.sh && chmod +x /etc/profile.d/cuopt.sh && echo 'PATH="/usr/local/cuda/bin:/usr/bin:/usr/local/bin:/usr/local/nvidia/bin/:/usr/local/lib/python${PYTHON_SHORT_VER}/dist-packages/libcuopt/bin:$PATH"' >> /etc/environment && echo 'LD_LIBRARY_PATH="/usr/lib/x86_64-linux-gnu:/usr/lib/aarch64-linux-gnu:/usr/local/cuda/lib64:/usr/local/nvidia/lib:/usr/local/nvidia/lib64:/usr/lib/wsl/lib:/usr/lib/wsl/lib/libnvidia-container:/usr/lib/nvidia:/usr/lib/nvidia-current:/usr/local/lib/python${PYTHON_SHORT_VER}/dist-packages/libcuopt/lib/:/usr/local/lib/python${PYTHON_SHORT_VER}/dist-packages/rapids_logger/lib64:${LD_LIBRARY_PATH}"' >> /etc/environment && chmod -R 755 /usr/local/lib/python${PYTHON_SHORT_VER}/dist-packages/cuopt* && chmod -R 755 /usr/local/lib/python${PYTHON_SHORT_VER}/dist-packages/libcuopt* && chmod -R 755 /usr/local/lib/python${PYTHON_SHORT_VER}/dist-packages/cuopt_* && chmod -R 755 /usr/local/bin/* && echo '#!/bin/bash' > /opt/cuopt/entrypoint.sh && echo 'set -e' >> /opt/cuopt/entrypoint.sh && echo '' >> /opt/cuopt/entrypoint.sh && echo '# Get current user info from Docker environment variables' >> /opt/cuopt/entrypoint.sh && echo 'CURRENT_UID=${UID:-1000}' >> /opt/cuopt/entrypoint.sh && echo 'CURRENT_GID=${GID:-1000}' >> /opt/cuopt/entrypoint.sh && echo '' >> /opt/cuopt/entrypoint.sh && echo '# Set environment variables for the current user' >> /opt/cuopt/entrypoint.sh && echo 'export HOME="/opt/cuopt"' >> /opt/cuopt/entrypoint.sh && echo '' >> /opt/cuopt/entrypoint.sh && echo '# Execute the command' >> /opt/cuopt/entrypoint.sh && echo 'exec "$@"' >> /opt/cuopt/entrypoint.sh && chmod +x /opt/cuopt/entrypoint.sh # buildkit
# 2025-10-15 03:47:48 0.00B 定义构建参数
ARG PYTHON_SHORT_VER
# 2025-10-15 03:47:48 1.74MB 执行命令并创建新的镜像层
RUN |2 CUOPT_VER=25.10.0 PYTHON_SHORT_VER=3.13 /bin/sh -c apt-get purge -y gcc && rm -rf /var/lib/apt/lists/* # buildkit
# 2025-10-15 03:47:48 4.97GB 执行命令并创建新的镜像层
RUN |2 CUOPT_VER=25.10.0 PYTHON_SHORT_VER=3.13 /bin/sh -c cuda_suffix=cu$(echo ${CUDA_VER} | cut -d'.' -f1) && cuda_major_minor=$(echo ${CUDA_VER} | cut -d'.' -f1-2) && python -m pip install --extra-index-url https://pypi.nvidia.com --extra-index-url https://pypi.anaconda.org/rapidsai-wheels-nightly/simple --no-cache-dir "cuopt-server-${cuda_suffix}==${CUOPT_VER}" "cuopt-sh-client==${CUOPT_VER}" && python -m pip list # buildkit
# 2025-10-15 03:45:36 0.00B 定义构建参数
ARG PYTHON_SHORT_VER
# 2025-10-15 03:45:36 0.00B 定义构建参数
ARG CUOPT_VER
# 2025-10-15 03:45:36 19.00B 执行命令并创建新的镜像层
RUN |3 CUDA_VER=13.0.0 CUOPT_VER=25.10.0 PYTHON_SHORT_VER=3.13 /bin/sh -c ln -sf /usr/bin/python${PYTHON_SHORT_VER} /usr/bin/python # buildkit
# 2025-10-15 03:45:36 0.00B 设置环境变量 DEBIAN_FRONTEND
ENV DEBIAN_FRONTEND=
# 2025-10-15 03:45:36 475.20MB 执行命令并创建新的镜像层
RUN |3 CUDA_VER=13.0.0 CUOPT_VER=25.10.0 PYTHON_SHORT_VER=3.13 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends build-essential software-properties-common && add-apt-repository ppa:deadsnakes/ppa && apt-get install -y --no-install-recommends wget unzip gcc python${PYTHON_SHORT_VER} python${PYTHON_SHORT_VER}-dev python${PYTHON_SHORT_VER}-venv && rm -rf /var/lib/apt/lists/* && python${PYTHON_SHORT_VER} -m ensurepip --upgrade && python${PYTHON_SHORT_VER} -m pip install --upgrade pip # buildkit
# 2025-10-15 03:45:36 0.00B 设置环境变量 DEBIAN_FRONTEND
ENV DEBIAN_FRONTEND=noninteractive
# 2025-10-15 03:45:36 0.00B 定义构建参数
ARG PYTHON_SHORT_VER
# 2025-10-15 03:45:36 0.00B 定义构建参数
ARG CUOPT_VER
# 2025-10-15 03:45:36 0.00B 定义构建参数
ARG CUDA_VER
# 2025-08-05 01:55:00 0.00B 设置环境变量 NVIDIA_DRIVER_CAPABILITIES
ENV NVIDIA_DRIVER_CAPABILITIES=compute,utility
# 2025-08-05 01:55:00 0.00B 设置环境变量 NVIDIA_VISIBLE_DEVICES
ENV NVIDIA_VISIBLE_DEVICES=all
# 2025-08-05 01:55:00 17.29KB 复制新文件或目录到容器中
COPY NGC-DL-CONTAINER-LICENSE / # buildkit
# 2025-08-05 01:55:00 0.00B 设置环境变量 LD_LIBRARY_PATH
ENV LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64:/usr/local/cuda/lib64
# 2025-08-05 01:55:00 0.00B 设置环境变量 PATH
ENV PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# 2025-08-05 01:55:00 22.00B 执行命令并创建新的镜像层
RUN |1 TARGETARCH=amd64 /bin/sh -c echo "/usr/local/cuda/lib64" >> /etc/ld.so.conf.d/nvidia.conf # buildkit
# 2025-08-05 01:55:00 322.59MB 执行命令并创建新的镜像层
RUN |1 TARGETARCH=amd64 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends cuda-cudart-13-0=${NV_CUDA_CUDART_VERSION} cuda-compat-13-0 && rm -rf /var/lib/apt/lists/* # buildkit
# 2025-08-05 01:54:41 0.00B 设置环境变量 CUDA_VERSION
ENV CUDA_VERSION=13.0.0
# 2025-08-05 01:54:41 10.60MB 执行命令并创建新的镜像层
RUN |1 TARGETARCH=amd64 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends gnupg2 curl ca-certificates && curl -fsSLO https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/${NVARCH}/cuda-keyring_1.1-1_all.deb && dpkg -i cuda-keyring_1.1-1_all.deb && apt-get purge --autoremove -y curl && rm -rf /var/lib/apt/lists/* # buildkit
# 2025-08-05 01:54:41 0.00B 添加元数据标签
LABEL maintainer=NVIDIA CORPORATION <cudatools@nvidia.com>
# 2025-08-05 01:54:41 0.00B 定义构建参数
ARG TARGETARCH
# 2025-08-05 01:54:41 0.00B 设置环境变量 NV_CUDA_CUDART_VERSION
ENV NV_CUDA_CUDART_VERSION=13.0.48-1
# 2025-08-05 01:54:41 0.00B 设置环境变量 NVIDIA_REQUIRE_CUDA brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand brand
ENV NVIDIA_REQUIRE_CUDA=cuda>=13.0 brand=unknown,driver>=535,driver<536 brand=grid,driver>=535,driver<536 brand=tesla,driver>=535,driver<536 brand=nvidia,driver>=535,driver<536 brand=quadro,driver>=535,driver<536 brand=quadrortx,driver>=535,driver<536 brand=nvidiartx,driver>=535,driver<536 brand=vapps,driver>=535,driver<536 brand=vpc,driver>=535,driver<536 brand=vcs,driver>=535,driver<536 brand=vws,driver>=535,driver<536 brand=cloudgaming,driver>=535,driver<536 brand=unknown,driver>=550,driver<551 brand=grid,driver>=550,driver<551 brand=tesla,driver>=550,driver<551 brand=nvidia,driver>=550,driver<551 brand=quadro,driver>=550,driver<551 brand=quadrortx,driver>=550,driver<551 brand=nvidiartx,driver>=550,driver<551 brand=vapps,driver>=550,driver<551 brand=vpc,driver>=550,driver<551 brand=vcs,driver>=550,driver<551 brand=vws,driver>=550,driver<551 brand=cloudgaming,driver>=550,driver<551 brand=unknown,driver>=565,driver<566 brand=grid,driver>=565,driver<566 brand=tesla,driver>=565,driver<566 brand=nvidia,driver>=565,driver<566 brand=quadro,driver>=565,driver<566 brand=quadrortx,driver>=565,driver<566 brand=nvidiartx,driver>=565,driver<566 brand=vapps,driver>=565,driver<566 brand=vpc,driver>=565,driver<566 brand=vcs,driver>=565,driver<566 brand=vws,driver>=565,driver<566 brand=cloudgaming,driver>=565,driver<566 brand=unknown,driver>=570,driver<571 brand=grid,driver>=570,driver<571 brand=tesla,driver>=570,driver<571 brand=nvidia,driver>=570,driver<571 brand=quadro,driver>=570,driver<571 brand=quadrortx,driver>=570,driver<571 brand=nvidiartx,driver>=570,driver<571 brand=vapps,driver>=570,driver<571 brand=vpc,driver>=570,driver<571 brand=vcs,driver>=570,driver<571 brand=vws,driver>=570,driver<571 brand=cloudgaming,driver>=570,driver<571 brand=unknown,driver>=575,driver<576 brand=grid,driver>=575,driver<576 brand=tesla,driver>=575,driver<576 brand=nvidia,driver>=575,driver<576 brand=quadro,driver>=575,driver<576 brand=quadrortx,driver>=575,driver<576 brand=nvidiartx,driver>=575,driver<576 brand=vapps,driver>=575,driver<576 brand=vpc,driver>=575,driver<576 brand=vcs,driver>=575,driver<576 brand=vws,driver>=575,driver<576 brand=cloudgaming,driver>=575,driver<576
# 2025-08-05 01:54:41 0.00B 设置环境变量 NVARCH
ENV NVARCH=x86_64
# 2025-07-15 00:33:32 0.00B
/bin/sh -c #(nop) CMD ["/bin/bash"]
# 2025-07-15 00:33:31 77.87MB
/bin/sh -c #(nop) ADD file:415bbc01dfb447d002e2d8173e113ef025d2bbfa20f1205823fa699dc87a2019 in /
# 2025-07-15 00:33:29 0.00B
/bin/sh -c #(nop) LABEL org.opencontainers.image.version=22.04
# 2025-07-15 00:33:29 0.00B
/bin/sh -c #(nop) LABEL org.opencontainers.image.ref.name=ubuntu
# 2025-07-15 00:33:29 0.00B
/bin/sh -c #(nop) ARG LAUNCHPAD_BUILD_ARCH
# 2025-07-15 00:33:29 0.00B
/bin/sh -c #(nop) ARG RELEASE
镜像信息
{
"Id": "sha256:78e0f612bbb64eb796043f735ba54f1df6bf7a804e4e93c2eada14c7001f4fd8",
"RepoTags": [
"nvidia/cuopt:25.10.0-cuda13.0-py3.13",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nvidia/cuopt:25.10.0-cuda13.0-py3.13"
],
"RepoDigests": [
"nvidia/cuopt@sha256:632baa7be7dc4621e344f3703d3c528bbaf8e495fa3ac67d14deac187947726a",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/docker.io/nvidia/cuopt@sha256:3b3c2221e356fb92aa3c6d9e0e40fa0086562ebb8137e56dd9d1e822fa5891ba"
],
"Parent": "",
"Comment": "buildkit.dockerfile.v0",
"Created": "2025-10-14T15:49:16.622198397-04:00",
"Container": "",
"ContainerConfig": null,
"DockerVersion": "",
"Author": "",
"Config": {
"Hostname": "",
"Domainname": "",
"User": "",
"AttachStdin": false,
"AttachStdout": false,
"AttachStderr": false,
"Tty": false,
"OpenStdin": false,
"StdinOnce": false,
"Env": [
"PATH=/usr/local/nvidia/bin:/usr/local/cuda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"NVARCH=x86_64",
"NVIDIA_REQUIRE_CUDA=cuda\u003e=13.0 brand=unknown,driver\u003e=535,driver\u003c536 brand=grid,driver\u003e=535,driver\u003c536 brand=tesla,driver\u003e=535,driver\u003c536 brand=nvidia,driver\u003e=535,driver\u003c536 brand=quadro,driver\u003e=535,driver\u003c536 brand=quadrortx,driver\u003e=535,driver\u003c536 brand=nvidiartx,driver\u003e=535,driver\u003c536 brand=vapps,driver\u003e=535,driver\u003c536 brand=vpc,driver\u003e=535,driver\u003c536 brand=vcs,driver\u003e=535,driver\u003c536 brand=vws,driver\u003e=535,driver\u003c536 brand=cloudgaming,driver\u003e=535,driver\u003c536 brand=unknown,driver\u003e=550,driver\u003c551 brand=grid,driver\u003e=550,driver\u003c551 brand=tesla,driver\u003e=550,driver\u003c551 brand=nvidia,driver\u003e=550,driver\u003c551 brand=quadro,driver\u003e=550,driver\u003c551 brand=quadrortx,driver\u003e=550,driver\u003c551 brand=nvidiartx,driver\u003e=550,driver\u003c551 brand=vapps,driver\u003e=550,driver\u003c551 brand=vpc,driver\u003e=550,driver\u003c551 brand=vcs,driver\u003e=550,driver\u003c551 brand=vws,driver\u003e=550,driver\u003c551 brand=cloudgaming,driver\u003e=550,driver\u003c551 brand=unknown,driver\u003e=565,driver\u003c566 brand=grid,driver\u003e=565,driver\u003c566 brand=tesla,driver\u003e=565,driver\u003c566 brand=nvidia,driver\u003e=565,driver\u003c566 brand=quadro,driver\u003e=565,driver\u003c566 brand=quadrortx,driver\u003e=565,driver\u003c566 brand=nvidiartx,driver\u003e=565,driver\u003c566 brand=vapps,driver\u003e=565,driver\u003c566 brand=vpc,driver\u003e=565,driver\u003c566 brand=vcs,driver\u003e=565,driver\u003c566 brand=vws,driver\u003e=565,driver\u003c566 brand=cloudgaming,driver\u003e=565,driver\u003c566 brand=unknown,driver\u003e=570,driver\u003c571 brand=grid,driver\u003e=570,driver\u003c571 brand=tesla,driver\u003e=570,driver\u003c571 brand=nvidia,driver\u003e=570,driver\u003c571 brand=quadro,driver\u003e=570,driver\u003c571 brand=quadrortx,driver\u003e=570,driver\u003c571 brand=nvidiartx,driver\u003e=570,driver\u003c571 brand=vapps,driver\u003e=570,driver\u003c571 brand=vpc,driver\u003e=570,driver\u003c571 brand=vcs,driver\u003e=570,driver\u003c571 brand=vws,driver\u003e=570,driver\u003c571 brand=cloudgaming,driver\u003e=570,driver\u003c571 brand=unknown,driver\u003e=575,driver\u003c576 brand=grid,driver\u003e=575,driver\u003c576 brand=tesla,driver\u003e=575,driver\u003c576 brand=nvidia,driver\u003e=575,driver\u003c576 brand=quadro,driver\u003e=575,driver\u003c576 brand=quadrortx,driver\u003e=575,driver\u003c576 brand=nvidiartx,driver\u003e=575,driver\u003c576 brand=vapps,driver\u003e=575,driver\u003c576 brand=vpc,driver\u003e=575,driver\u003c576 brand=vcs,driver\u003e=575,driver\u003c576 brand=vws,driver\u003e=575,driver\u003c576 brand=cloudgaming,driver\u003e=575,driver\u003c576",
"NV_CUDA_CUDART_VERSION=13.0.48-1",
"CUDA_VERSION=13.0.0",
"LD_LIBRARY_PATH=/usr/local/nvidia/lib:/usr/local/nvidia/lib64:/usr/local/cuda/lib64",
"NVIDIA_VISIBLE_DEVICES=all",
"NVIDIA_DRIVER_CAPABILITIES=compute,utility",
"DEBIAN_FRONTEND="
],
"Cmd": [
"python",
"-m",
"cuopt_server.cuopt_service"
],
"ArgsEscaped": true,
"Image": "",
"Volumes": null,
"WorkingDir": "/opt/cuopt",
"Entrypoint": [
"/opt/cuopt/entrypoint.sh"
],
"OnBuild": null,
"Labels": {
"maintainer": "NVIDIA CORPORATION \u003ccudatools@nvidia.com\u003e",
"org.opencontainers.image.ref.name": "ubuntu",
"org.opencontainers.image.version": "22.04"
}
},
"Architecture": "amd64",
"Os": "linux",
"Size": 7611971956,
"GraphDriver": {
"Data": {
"LowerDir": "/var/lib/docker/overlay2/c1d2068ff86b8ef56ad5a46193624a0f400b959158ab85bc91c61f994292df02/diff:/var/lib/docker/overlay2/283df7d29d8cb23ffc04f8cb89ac4badb379919585ba11633835d9a988c00f72/diff:/var/lib/docker/overlay2/577b661aee04a5d89d6fbf2a5f5303a67ed69fafb90b11f786c123bf3f0fa1e0/diff:/var/lib/docker/overlay2/91ded9d7e0c5486422690ba17bbbb34142713d8e75a733cbcec3d58c1aa4b5fe/diff:/var/lib/docker/overlay2/874306fc89cf5ffa3709ac6b758832314d58bb6288a2fb60f8e61149ec013518/diff:/var/lib/docker/overlay2/d8fc934211ad82ea9947ca8d46b56a2e70a1e3706ac0ee1b8cdf9012355b9c39/diff:/var/lib/docker/overlay2/96f33c252985ec5503b9f0a8ae9193fe5e145971ef3a4b6ad0eb5908e93704d9/diff:/var/lib/docker/overlay2/8c37a7016a4adb60ec69ec9f23c75db42e6b7300401bc860c76fc522d2526231/diff:/var/lib/docker/overlay2/3ce10354eaa56414b67627c5d8749b72cc158d22dea5e114802b6ddc19e53c1b/diff:/var/lib/docker/overlay2/04efce5b685dba69517acd2afb0a7fa9a1f4ee4b9b76fafcf091dda5648d6091/diff:/var/lib/docker/overlay2/f82f9a2e8376678b6aa2c0eee83a24d418bf0aeffaa23e73d986f815b9928235/diff:/var/lib/docker/overlay2/951260cdbc05bee981f4e0aa4204583b162d8394c8936cc7b49433ba33195a27/diff:/var/lib/docker/overlay2/4be2314e5952944a0c02befa950c262451a1bfc3e27156ba576d67523304a9e5/diff",
"MergedDir": "/var/lib/docker/overlay2/582874a1261cf524ee87a5308a91feab8bc7a1687332e7021f91c7e17d835bf6/merged",
"UpperDir": "/var/lib/docker/overlay2/582874a1261cf524ee87a5308a91feab8bc7a1687332e7021f91c7e17d835bf6/diff",
"WorkDir": "/var/lib/docker/overlay2/582874a1261cf524ee87a5308a91feab8bc7a1687332e7021f91c7e17d835bf6/work"
},
"Name": "overlay2"
},
"RootFS": {
"Type": "layers",
"Layers": [
"sha256:3cc982388b71ef357e0157e0b7d3059dcefa4dc9fd2e3815bde6c6ce040302f3",
"sha256:f03be4c9bdee213e2e29366625ee0a834aafba0c013493db89ab23de3b1c5a9b",
"sha256:e650830cfe35a4596634528df6976f56c4542320f130a97c4d57e7cc36311da6",
"sha256:e9229dce170e8dafb6a7969fbb2c8bf722ff71f2bc01bd8e7ab706490ed3265c",
"sha256:5a78bf589884924fc929c0c16794b40840135578f5c85b3819102b4bdd309806",
"sha256:f63375b3de21581b91cc92d765ab4e7f52bf6b3a6a20aaaafd55fefb7ff43695",
"sha256:2bccc3a05eaf866a4c22c0601e39e1609c0416f49b4370247b9ec5a8213c2804",
"sha256:412df4434d2577143d9a359fa1bb571b4633d919db67badbf9ff411f92791742",
"sha256:015bd037dc768e8d880345dab9bf51aae9f262fd6a0800f5002f107dbdd70cfc",
"sha256:712393c4aebb27840d53d4c0104473afc4a2f68c566a7d09debb2cfba3a6c6f9",
"sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
"sha256:fdfd8dd05fb5f0dc5fc1ab6402bfa39e7bfb9679a1e52f910c6ee70212f27c57",
"sha256:eb346dc2b9ba72ce22a9adce100e248b9f8de8d81cf349a8cdeac44f49e896c9",
"sha256:3a9f285fa227f6acbc351dd6d7ac0d37fa37f2c9bd98c3732f7782aa0e6b3981"
]
},
"Metadata": {
"LastTagTime": "2025-10-30T00:56:09.739841174+08:00"
}
}