镜像构建历史
# 2025-10-16 19:32:10 0.00B 添加元数据标签
LABEL devcontainer.metadata=[ {"id":"ghcr.io/devcontainers/features/common-utils:2"}, {"id":"ghcr.io/devcontainers/features/git:1","customizations":{"vscode":{"settings":{"github.copilot.chat.codeGeneration.instructions":[{"text":"This dev container includes an up-to-date version of Git, built from source as needed, pre-installed and available on the `PATH`."}]}}}}, {"remoteUser":"vscode"}, {"id":"ghcr.io/devcontainers/features/git:1","customizations":{"vscode":{"settings":{"github.copilot.chat.codeGeneration.instructions":[{"text":"This dev container includes an up-to-date version of Git, built from source as needed, pre-installed and available on the `PATH`."}]}}}}, {"id":"ghcr.io/devcontainers/features/node:1","customizations":{"vscode":{"extensions":["dbaeumer.vscode-eslint"],"settings":{"github.copilot.chat.codeGeneration.instructions":[{"text":"This dev container includes `node`, `npm` and `eslint` pre-installed and available on the `PATH` for Node.js and JavaScript development."}]}}}}, {"id":"ghcr.io/devcontainers/features/python:1","customizations":{"vscode":{"extensions":["ms-python.python","ms-python.vscode-pylance","ms-python.autopep8"],"settings":{"github.copilot.chat.codeGeneration.instructions":[{"text":"This dev container includes `python3` and `pip3` pre-installed and available on the `PATH`, along with the Python language extensions for Python development."}],"python.defaultInterpreterPath":"/usr/local/python/current/bin/python","[python]":{"editor.defaultFormatter":"ms-python.autopep8"}}}}}, {"customizations":{"vscode":{"settings":{"github.copilot.chat.codeGeneration.instructions":[{"text":"This dev container includes Miniconda and the `conda` package manager pre-installed and available on the `PATH` for data science and Python development. Additional packages installed using Conda will be downloaded from Anaconda or another repository configured by the user. A user can install different versions of Python than the one in this dev container by running a command like: `conda install python=3.7`. The Python extensions are also pre-installed and configured to use the conda environment in this dev container."}],"python.defaultInterpreterPath":"/opt/conda/bin/python"},"extensions":["ms-python.python","ms-python.vscode-pylance"]}},"remoteUser":"vscode"} ]
# 2025-10-16 19:32:10 0.00B 指定运行容器时使用的用户
USER root
# 2025-10-16 19:32:10 0.00B 定义构建参数
ARG _DEV_CONTAINERS_IMAGE_USER=root
# 2025-10-16 19:32:10 286.68MB 执行命令并创建新的镜像层
RUN /bin/sh -c cp -ar /tmp/build-features-src/python_2 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/python_2 && cd /tmp/dev-container-features/python_2 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/python_2 # buildkit
# 2025-10-16 19:31:39 0.00B 设置环境变量 PATH
ENV PATH=/usr/local/python/current/bin:/usr/local/py-utils/bin:/usr/local/jupyter:/usr/local/share/nvm/current/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# 2025-10-16 19:31:39 0.00B 设置环境变量 PIPX_BIN_DIR
ENV PIPX_BIN_DIR=/usr/local/py-utils/bin
# 2025-10-16 19:31:39 0.00B 设置环境变量 PIPX_HOME
ENV PIPX_HOME=/usr/local/py-utils
# 2025-10-16 19:31:39 0.00B 设置环境变量 PYTHON_PATH
ENV PYTHON_PATH=/usr/local/python/current
# 2025-10-16 19:31:39 7.89MB 执行命令并创建新的镜像层
RUN /bin/sh -c cp -ar /tmp/build-features-src/node_1 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/node_1 && cd /tmp/dev-container-features/node_1 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/node_1 # buildkit
# 2025-10-16 19:31:35 0.00B 设置环境变量 PATH
ENV PATH=/usr/local/share/nvm/current/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# 2025-10-16 19:31:35 0.00B 设置环境变量 NVM_SYMLINK_CURRENT
ENV NVM_SYMLINK_CURRENT=true
# 2025-10-16 19:31:35 0.00B 设置环境变量 NVM_DIR
ENV NVM_DIR=/usr/local/share/nvm
# 2025-10-16 19:31:35 133.38MB 执行命令并创建新的镜像层
RUN /bin/sh -c cp -ar /tmp/build-features-src/git_0 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/git_0 && cd /tmp/dev-container-features/git_0 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/git_0 # buildkit
# 2025-10-16 19:28:58 99.00B 执行命令并创建新的镜像层
RUN /bin/sh -c echo "_CONTAINER_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'root' || grep -E '^root|^[^:]*:[^:]*:root:' /etc/passwd || true) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env && echo "_REMOTE_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'vscode' || grep -E '^vscode|^[^:]*:[^:]*:vscode:' /etc/passwd || true) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env # buildkit
# 2025-10-16 19:28:58 41.00B 复制新文件或目录到容器中
COPY /tmp/build-features/ /tmp/dev-container-features # buildkit
# 2025-10-16 19:28:58 0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir -p /tmp/dev-container-features # buildkit
# 2025-10-16 19:28:58 0.00B 指定运行容器时使用的用户
USER root
# 2025-10-16 19:28:58 0.00B 添加元数据标签
LABEL dev.containers.timestamp=Thu, 16 Oct 2025 11:27:45 GMT
# 2025-10-16 19:28:58 0.00B 添加元数据标签
LABEL dev.containers.source=https://github.com/devcontainers/images
# 2025-10-16 19:28:58 0.00B 添加元数据标签
LABEL dev.containers.release=v0.4.19
# 2025-10-16 19:28:58 0.00B 添加元数据标签
LABEL dev.containers.variant=null
# 2025-10-16 19:28:58 0.00B 添加元数据标签
LABEL dev.containers.id=miniconda
# 2025-10-16 19:28:58 0.00B 添加元数据标签
LABEL version=1.1.11
# 2025-10-16 19:28:58 288.00B 复制新文件或目录到容器中
COPY meta.env /usr/local/etc/vscode-dev-containers/ # buildkit
# 2025-10-16 19:28:58 0.00B 执行命令并创建新的镜像层
RUN |2 USERNAME=vscode USERNAME=vscode /bin/sh -c if [ -f "/tmp/conda-tmp/environment.yml" ]; then umask 0002 && /opt/conda/bin/conda env update -n base -f /tmp/conda-tmp/environment.yml; fi && rm -rf /tmp/conda-tmp # buildkit
# 2025-10-16 19:28:58 192.00B 复制新文件或目录到容器中
COPY environment.yml* noop.txt /tmp/conda-tmp/ # buildkit
# 2025-10-16 19:28:58 259.21MB 执行命令并创建新的镜像层
RUN |2 USERNAME=vscode USERNAME=vscode /bin/sh -c apt-get update && export DEBIAN_FRONTEND=noninteractive && apt-get install -y --no-install-recommends bzip2 ca-certificates libglib2.0-0 libsm6 libxext6 libxrender1 mercurial openssh-client procps subversion wget && apt-get upgrade -y && bash /tmp/library-scripts/add-notice.sh && ln -s /opt/conda/etc/profile.d/conda.sh /etc/profile.d/conda.sh && echo ". /opt/conda/etc/profile.d/conda.sh" >> ~/.bashrc && echo "conda activate base" >> ~/.bashrc && apt-get clean -y && rm -rf /var/lib/apt/lists/* /tmp/library-scripts/add-notice.sh # buildkit
# 2025-10-16 19:28:35 0.00B 定义构建参数
ARG USERNAME=vscode
# 2025-10-16 19:28:35 0.00B 设置环境变量 LANG LC_ALL PATH
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 PATH=/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
# 2025-10-16 19:28:35 868.00B 复制新文件或目录到容器中
COPY add-notice.sh /tmp/library-scripts/ # buildkit
# 2025-10-16 19:28:35 0.00B 指定运行容器时使用的用户
USER root
# 2025-10-16 19:28:35 0.00B 执行命令并创建新的镜像层
RUN |1 USERNAME=vscode /bin/sh -c chmod =2775 /opt/conda # buildkit
# 2025-10-16 19:28:35 589.96MB 复制新文件或目录到容器中
COPY /opt/conda /opt/conda # buildkit
# 2025-10-16 19:28:21 1.75KB 执行命令并创建新的镜像层
RUN |1 USERNAME=vscode /bin/sh -c groupadd -r conda --gid 900 && usermod -aG conda ${USERNAME} # buildkit
# 2025-10-16 19:28:21 0.00B 定义构建参数
ARG USERNAME=vscode
# 2025-07-10 19:43:09 0.00B 添加元数据标签
LABEL devcontainer.metadata=[ {"id":"ghcr.io/devcontainers/features/common-utils:2"}, {"id":"ghcr.io/devcontainers/features/git:1","customizations":{"vscode":{"settings":{"github.copilot.chat.codeGeneration.instructions":[{"text":"This dev container includes an up-to-date version of Git, built from source as needed, pre-installed and available on the `PATH`."}]}}}}, {"remoteUser":"vscode"} ]
# 2025-07-10 19:43:09 0.00B 指定运行容器时使用的用户
USER root
# 2025-07-10 19:43:09 0.00B 定义构建参数
ARG _DEV_CONTAINERS_IMAGE_USER=root
# 2025-07-10 19:43:09 425.10MB 执行命令并创建新的镜像层
RUN /bin/sh -c cp -ar /tmp/build-features-src/git_1 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/git_1 && cd /tmp/dev-container-features/git_1 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/git_1 # buildkit
# 2025-07-10 19:40:23 251.34MB 执行命令并创建新的镜像层
RUN /bin/sh -c cp -ar /tmp/build-features-src/common-utils_0 /tmp/dev-container-features && chmod -R 0755 /tmp/dev-container-features/common-utils_0 && cd /tmp/dev-container-features/common-utils_0 && chmod +x ./devcontainer-features-install.sh && ./devcontainer-features-install.sh && rm -rf /tmp/dev-container-features/common-utils_0 # buildkit
# 2025-07-10 19:40:08 87.00B 执行命令并创建新的镜像层
RUN /bin/sh -c echo "_CONTAINER_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'root' || grep -E '^root|^[^:]*:[^:]*:root:' /etc/passwd || true) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env && echo "_REMOTE_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'vscode' || grep -E '^vscode|^[^:]*:[^:]*:vscode:' /etc/passwd || true) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env # buildkit
# 2025-07-10 19:40:08 41.00B 复制新文件或目录到容器中
COPY /tmp/build-features/ /tmp/dev-container-features # buildkit
# 2025-07-10 19:40:08 0.00B 执行命令并创建新的镜像层
RUN /bin/sh -c mkdir -p /tmp/dev-container-features # buildkit
# 2025-07-10 19:40:08 0.00B 指定运行容器时使用的用户
USER root
# 2025-07-10 19:40:08 0.00B 添加元数据标签
LABEL dev.containers.timestamp=Thu, 10 Jul 2025 11:39:48 GMT
# 2025-07-10 19:40:08 0.00B 添加元数据标签
LABEL dev.containers.source=https://github.com/devcontainers/images
# 2025-07-10 19:40:08 0.00B 添加元数据标签
LABEL dev.containers.release=v0.4.17
# 2025-07-10 19:40:08 0.00B 添加元数据标签
LABEL dev.containers.variant=bookworm
# 2025-07-10 19:40:08 0.00B 添加元数据标签
LABEL dev.containers.id=base-debian
# 2025-07-10 19:40:08 0.00B 添加元数据标签
LABEL version=1.0.25
# 2025-07-10 19:40:08 300.00B 复制新文件或目录到容器中
COPY meta.env /usr/local/etc/vscode-dev-containers/ # buildkit
# 2023-05-11 07:29:59 48.39MB 执行命令并创建新的镜像层
RUN /bin/sh -c set -eux; apt-get update; apt-get install -y --no-install-recommends ca-certificates curl gnupg netbase sq wget ; rm -rf /var/lib/apt/lists/* # buildkit
# 2023-05-11 07:29:59 116.55MB
# debian.sh --arch 'amd64' out/ 'bookworm' '@1751241600'
镜像信息
{
"Id": "sha256:820cf58efb59caf24c44ebc00208b2cd96e93ff2f2c11e6e3044ec4cd6a7dda3",
"RepoTags": [
"mcr.microsoft.com/devcontainers/miniconda:1-3",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/mcr.microsoft.com/devcontainers/miniconda:1-3"
],
"RepoDigests": [
"mcr.microsoft.com/devcontainers/miniconda@sha256:19516babd35bccd1429591a255dd867b2c8c01606cc594a8a6fe5db03309ecf8",
"swr.cn-north-4.myhuaweicloud.com/ddn-k8s/mcr.microsoft.com/devcontainers/miniconda@sha256:13c1eb7dd32c57b6d36bd320d533cfe66ac447fdec400c45ff3b0007a2b42a54"
],
"Parent": "",
"Comment": "buildkit.dockerfile.v0",
"Created": "2025-10-16T11:32:10.959234388Z",
"Container": "",
"ContainerConfig": null,
"DockerVersion": "",
"Author": "",
"Config": {
"Hostname": "",
"Domainname": "",
"User": "root",
"AttachStdin": false,
"AttachStdout": false,
"AttachStderr": false,
"Tty": false,
"OpenStdin": false,
"StdinOnce": false,
"Env": [
"PATH=/usr/local/python/current/bin:/usr/local/py-utils/bin:/usr/local/jupyter:/usr/local/share/nvm/current/bin:/opt/conda/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin",
"LANG=C.UTF-8",
"LC_ALL=C.UTF-8",
"NVM_DIR=/usr/local/share/nvm",
"NVM_SYMLINK_CURRENT=true",
"PYTHON_PATH=/usr/local/python/current",
"PIPX_HOME=/usr/local/py-utils",
"PIPX_BIN_DIR=/usr/local/py-utils/bin"
],
"Cmd": [
"bash"
],
"Image": "",
"Volumes": null,
"WorkingDir": "",
"Entrypoint": null,
"OnBuild": null,
"Labels": {
"dev.containers.id": "miniconda",
"dev.containers.release": "v0.4.19",
"dev.containers.source": "https://github.com/devcontainers/images",
"dev.containers.timestamp": "Thu, 16 Oct 2025 11:27:45 GMT",
"dev.containers.variant": "null",
"devcontainer.metadata": "[ {\"id\":\"ghcr.io/devcontainers/features/common-utils:2\"}, {\"id\":\"ghcr.io/devcontainers/features/git:1\",\"customizations\":{\"vscode\":{\"settings\":{\"github.copilot.chat.codeGeneration.instructions\":[{\"text\":\"This dev container includes an up-to-date version of Git, built from source as needed, pre-installed and available on the `PATH`.\"}]}}}}, {\"remoteUser\":\"vscode\"}, {\"id\":\"ghcr.io/devcontainers/features/git:1\",\"customizations\":{\"vscode\":{\"settings\":{\"github.copilot.chat.codeGeneration.instructions\":[{\"text\":\"This dev container includes an up-to-date version of Git, built from source as needed, pre-installed and available on the `PATH`.\"}]}}}}, {\"id\":\"ghcr.io/devcontainers/features/node:1\",\"customizations\":{\"vscode\":{\"extensions\":[\"dbaeumer.vscode-eslint\"],\"settings\":{\"github.copilot.chat.codeGeneration.instructions\":[{\"text\":\"This dev container includes `node`, `npm` and `eslint` pre-installed and available on the `PATH` for Node.js and JavaScript development.\"}]}}}}, {\"id\":\"ghcr.io/devcontainers/features/python:1\",\"customizations\":{\"vscode\":{\"extensions\":[\"ms-python.python\",\"ms-python.vscode-pylance\",\"ms-python.autopep8\"],\"settings\":{\"github.copilot.chat.codeGeneration.instructions\":[{\"text\":\"This dev container includes `python3` and `pip3` pre-installed and available on the `PATH`, along with the Python language extensions for Python development.\"}],\"python.defaultInterpreterPath\":\"/usr/local/python/current/bin/python\",\"[python]\":{\"editor.defaultFormatter\":\"ms-python.autopep8\"}}}}}, {\"customizations\":{\"vscode\":{\"settings\":{\"github.copilot.chat.codeGeneration.instructions\":[{\"text\":\"This dev container includes Miniconda and the `conda` package manager pre-installed and available on the `PATH` for data science and Python development. Additional packages installed using Conda will be downloaded from Anaconda or another repository configured by the user. A user can install different versions of Python than the one in this dev container by running a command like: `conda install python=3.7`. The Python extensions are also pre-installed and configured to use the conda environment in this dev container.\"}],\"python.defaultInterpreterPath\":\"/opt/conda/bin/python\"},\"extensions\":[\"ms-python.python\",\"ms-python.vscode-pylance\"]}},\"remoteUser\":\"vscode\"} ]",
"version": "1.1.11"
}
},
"Architecture": "amd64",
"Os": "linux",
"Size": 2118484051,
"GraphDriver": {
"Data": {
"LowerDir": "/var/lib/docker/overlay2/bc1b5913989dbf5d2a9f96a3c59eb477c6febe419c7817fd4fa1e955565fe4c6/diff:/var/lib/docker/overlay2/3ffcf40c00097389b7fa1074e5b8052985439f01057cfa7b621e6729baac1227/diff:/var/lib/docker/overlay2/897697905c172896ea023f8374165ae79a5a3e996015faed27904a0a37cd8f3f/diff:/var/lib/docker/overlay2/cb6cf464967b5faf2fabe5debcaf929c19999675165c13f9d8478972cddb1932/diff:/var/lib/docker/overlay2/3849f73f3d30ab6c0a55ab8352d60fad34b177da68f87e300349cbfb4c08a2dd/diff:/var/lib/docker/overlay2/6340f703e92c0430879890052373fb3f4cd7c301a90fe1ff37d1b772898f005e/diff:/var/lib/docker/overlay2/684b32b87616de2c661209feb2913d7066c56371c042be72fd98c46c73419074/diff:/var/lib/docker/overlay2/b4c8afef903c86944b79d90977bebfac0009a4d944af059ee058a59a35b4cb65/diff:/var/lib/docker/overlay2/5588d7f9044f2de129bb57c3e0a6f56e80fa70835146c56959774ba075669ee6/diff:/var/lib/docker/overlay2/f47dd65d4f0fde9b5f4b5ca4f712f00cbfda22f167cc8acb0faa213878729f1f/diff:/var/lib/docker/overlay2/bb2b1faf1f9dd4446ed7a6b34122c1893805e0b191f8bb330fe88219a425f66d/diff:/var/lib/docker/overlay2/a6d7920ea5ae394c5ba274458d867c493f129dfe9bf28fc6a6a13b898d7a793e/diff:/var/lib/docker/overlay2/69f9cefae61942d91ef1d25fe927d553aead661bdf75d92181bd33d093ce5771/diff:/var/lib/docker/overlay2/d4eab131eb7e087e14a9238efc24a004b6e727d764ec0c4c3d61a03f45471304/diff:/var/lib/docker/overlay2/506c1e24c41a9ab6b1b16a601f7521fce584f2522446df67c675dd55bd8193ee/diff:/var/lib/docker/overlay2/e774792d6eeb9040bdd1c8ef48c7aa37e8ae0cc524fb280dce3d41a65aca611f/diff:/var/lib/docker/overlay2/6ddd028a5c27a868508eb1217e7b557df8d6aa98786ffb335b5b6b0a0d7707f6/diff:/var/lib/docker/overlay2/c141454734b595a76a88a504bf42ad1aed0f8ac2144ecf31e2534885ebcd8bd5/diff:/var/lib/docker/overlay2/5307590c35d8496c73b829f990a24edd12e92ede445f579bc293583a192e7309/diff:/var/lib/docker/overlay2/04770350c3f804b77f1620737c1a9a63b364d75ab2daedc070daca9178237fe6/diff:/var/lib/docker/overlay2/759e0c6eed56d74c20d31fbd6811d535c4a9c451a4cccc89928fded875d39ee5/diff",
"MergedDir": "/var/lib/docker/overlay2/d909dda9091da384cc704aa702fa6f106e4e2f2a51fa25316a1b034ee2d5f4b8/merged",
"UpperDir": "/var/lib/docker/overlay2/d909dda9091da384cc704aa702fa6f106e4e2f2a51fa25316a1b034ee2d5f4b8/diff",
"WorkDir": "/var/lib/docker/overlay2/d909dda9091da384cc704aa702fa6f106e4e2f2a51fa25316a1b034ee2d5f4b8/work"
},
"Name": "overlay2"
},
"RootFS": {
"Type": "layers",
"Layers": [
"sha256:385eb556134e17ef23cfd59b33526dddab1776f743b3713ff9a08a484ece4aaa",
"sha256:c878d283e64a0ef7ddb31614dd7b9aa8ea15e80da6489496121a81cfa594a979",
"sha256:3cf22ef1fe46a6310a1c6ac16b4cc1cfe9814a57323b99a1a1439a27a50c9a12",
"sha256:abd46e335b93306758c8488791f6cb7f855021d13a7c0939d4a53025ef817c48",
"sha256:0db2cfd92d3a933c71756ac11e85ecfc02094e3277d85ce4a1ef66d919266419",
"sha256:b34f14c9e8badbaafd106e7041efbde1c49fa243a790a03280feda01e61887e5",
"sha256:4049f9c27ed969f9d8ae584273a9f5acb2ddf0da777ff6cd80ad72d5718bad14",
"sha256:0ff1fc9ba7fe66c6536905717ca388e220cc256b9a8ddf38700654b92b8df576",
"sha256:8d901db34795b2cd063ba4d452d8fb0ee0e0ee0f52a0619210de4dedbe403ba7",
"sha256:1ba04ee9a0bc8e056069fc201f4ba2129903c02f1455f810faa2c2656e12a212",
"sha256:918b800dfcbb29210089bae66e34376c265e8de464e3521e32b1107f25e8fd4d",
"sha256:9f2a50de7515017f8da4992df370c7c4f313052a3847f2d4d1ae38965957904e",
"sha256:0c24d24ef788513d0f8e5723b889e65c725ea6c0d5f3637fad27e2868be1ed06",
"sha256:3d9a0b05499e80a19f8547d7cfe9876bb53bc436ee3501a4540ce8e93df1bd7c",
"sha256:8ff9fb79d71d1060cf384c8237c77b485887baab107a64c14f47b83a8477247e",
"sha256:0f321336474678d449dda5cc747c82cde243af57da9bf2c34a058081505b5815",
"sha256:5f70bf18a086007016e948b04aed3b82103a36bea41755b6cddfaf10ace3c6ef",
"sha256:61103994de15af7437ffb94b455c7cb137565cd499560a48bedce4239cc2baad",
"sha256:e2359412fcccce1e8ad0e53bb59a171007004b0f4728700d37fbdc32e8f85dae",
"sha256:081eece0c69bce5a2a83bb09cb91b3bf50601aa2b0775302dbbc58d4645eddaf",
"sha256:add4dc2288f9f0295f964b5de866335890824c584e8def07e174c4bd8516e1fc",
"sha256:e88794658d50d6b15f5affe6d87d667eea91e7bd3128b6fd220ae4d655755523"
]
},
"Metadata": {
"LastTagTime": "2025-10-28T21:36:23.60548198+08:00"
}
}