Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release issue in dev build, version history checking failing for miniconda image in the Build and Push dev workflow #1329

Merged
merged 4 commits into from
Mar 6, 2025

Conversation

Kaniska244
Copy link
Contributor

@Kaniska244 Kaniska244 commented Mar 4, 2025

Ref# https://github.com/devcontainers/internal/issues/254 , pypa/pip#13154

Description: Version history checking failing for miniconda image in the Build and Push dev workflow

Root Cause: This is failing in version history for miniconda image because its running pip list with --no-python-version-warning & --format json options which would get the list of installed python packages in json format but its getting generated with a warning message as --no-python-version-warning option will be deprecated in pip 25.1 version & due to the warning message the output of the pip list didn't get generated as a well-formed json & hence the json parsing error appeared. PFB the sample payload which is getting generated.

base) root ➜ / $ set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --no-python-version-warning --format json && echo && echo ~~~END~~~
~~~BEGIN~~~
DEPRECATION: --no-python-version-warning is deprecated. pip 25.1 will enforce this behaviour change. A possible replacement is to remove the flag as it's a no-op. Discussion can be found at https://github.com/pypa/pip/issues/13154
[{"name": "anaconda-anon-usage", "version": "0.5.0"}, {"name": "annotated-types", "version": "0.6.0"}, {"name": "archspec", "version": "0.2.3"}, {"name": "boltons", "version": "24.1.0"}, {"name": "Brotli", "version": "1.0.9"}, {"name": "certifi", "version": "2025.1.31"}, {"name": "cffi", "version": "1.17.1"}, {"name": "charset-normalizer", "version": "3.3.2"}, {"name": "conda", "version": "25.1.1"}, {"name": "conda-anaconda-telemetry", "version": "0.1.2"}, {"name": "conda-anaconda-tos", "version": "0.1.2"}, {"name": "conda-content-trust", "version": "0.2.0"}, {"name": "conda-libmamba-solver", "version": "25.1.1"}, {"name": "conda-package-handling", "version": "2.4.0"}, {"name": "conda_package_streaming", "version": "0.11.0"}, {"name": "cryptography", "version": "43.0.3"}, {"name": "distro", "version": "1.9.0"}, {"name": "frozendict", "version": "2.4.2"}, {"name": "idna", "version": "3.7"}, {"name": "jsonpatch", "version": "1.33"}, {"name": "jsonpointer", "version": "2.1"}, {"name": "libmambapy", "version": "2.0.5"}, {"name": "markdown-it-py", "version": "2.2.0"}, {"name": "mdurl", "version": "0.1.0"}, {"name": "menuinst", "version": "2.2.0"}, {"name": "packaging", "version": "24.2"}, {"name": "pip", "version": "25.0"}, {"name": "platformdirs", "version": "3.10.0"}, {"name": "pluggy", "version": "1.5.0"}, {"name": "pycosat", "version": "0.6.6"}, {"name": "pycparser", "version": "2.21"}, {"name": "pydantic", "version": "2.10.3"}, {"name": "pydantic_core", "version": "2.27.1"}, {"name": "Pygments", "version": "2.15.1"}, {"name": "PySocks", "version": "1.7.1"}, {"name": "requests", "version": "2.32.3"}, {"name": "rich", "version": "13.9.4"}, {"name": "ruamel.yaml", "version": "0.18.6"}, {"name": "ruamel.yaml.clib", "version": "0.2.8"}, {"name": "setuptools", "version": "75.8.0"}, {"name": "tqdm", "version": "4.67.1"}, {"name": "truststore", "version": "0.10.0"}, {"name": "typing_extensions", "version": "4.12.2"}, {"name": "urllib3", "version": "2.3.0"}, {"name": "wheel", "version": "0.45.1"}, {"name": "zstandard", "version": "0.23.0"}]

~~~END~~~

Changelog: Changes done in ./build/src/utils/image-content-extractor.js file to remove --no-python-version-warning option from the pip list command in getPipVersionLookup function as this option is a no-op in Python 3 versions.

Checklist:

  • Checked that applied changes work as expected.
  • There is no existing test suite available for this build node app /build/vscdc unlike cli repo.
  • I tested this in codespace by launching vscdc info directly from launch.json for all images variants in the images repository.
  • Adding the test captures from debug console below in comments for miniconda, anaconda, python & universal images where python package check is applicable.

@Kaniska244
Copy link
Contributor Author

Debug console capture without the change for miniconda image.

/usr/local/bin/node ./build/vscdc info miniconda --no-build --markdown --cg --overwrite --prune --release main --github-repo devcontainers/images --registry mcr.microsoft.com --registryPath devcontainers
devcontainers CLI
Copyright (c) Microsoft Corporation. All rights reserved.
(*) Generating image information files...
(*) Pulling image mcr.microsoft.com/devcontainers/miniconda:dev-3...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/miniconda:dev-3
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082144763 mcr.microsoft.com/devcontainers/miniconda:dev-3 sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082144763 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082144763
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:9a2b681921b460987435a2378a1d34a5dd5c28bcd407472ce0bbd6ee927ed35e
(*) Spawn: docker exec -u root vscdc--extract--1741082144763 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082144763 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082144763 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.6.1.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.6.1.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20230311.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.88.1-10+deb12u8.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20230209-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.39.5-0+deb12u2.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.40-1.1.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.2.2-2.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 6.1.0-3.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 590-2.1~deb12u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.36-9+deb12u9.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.20.1-2+deb12u2.
(*) Fallback pool URL for libicu72 is undefined
(!) No URI found for libicu72 72.1-3.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.20.1-2+deb12u2.
(*) Fallback pool URL for liblttng-ust1 is undefined
(!) No URI found for liblttng-ust1 2.13.5-1.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 12.2.0-14.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.36-9+deb12u9.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 12.0-1.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.95.0-1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.11.2-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 6.03-2.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 6.03-2.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 7.2-1+deb12u1.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.18-0.2.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 2.10-0.1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:9.2p1-2+deb12u5.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:4.0.2-3.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.6-1.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.7-1+deb12u2.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 6.1-0.1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.13p3-1+deb12u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-28.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:9.0.1378-2.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21.3-1+b2.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-13.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.13.dfsg-1.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.9-4+b5.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.1" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082144763 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --no-python-version-warning --format json && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082144763
(!) Image information file generation failed - SyntaxError: Unexpected token D in JSON at position 0
    SyntaxError: Unexpected token D in JSON at position 0
    at JSON.parse (<anonymous>)
    at getPipVersionLookup (/workspaces/images/build/src/utils/image-content-extractor.js:289:37)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
    at async getPipPackageInfo (/workspaces/images/build/src/utils/image-content-extractor.js:272:91)
    at async Object.getAllContentInfo (/workspaces/images/build/src/utils/image-content-extractor.js:631:18)
    at async /workspaces/images/build/src/image-info.js:108:26
    at async Object.forEach (/workspaces/images/build/src/utils/async.js:20:13)
    at async getDefinitionImageContent (/workspaces/images/build/src/image-info.js:92:5)
    at async /workspaces/images/build/src/image-info.js:48:32
    at async Object.forEach (/workspaces/images/build/src/utils/async.js:20:13)
Process exited with code 1

Debug console capture with the fix

/usr/local/bin/node ./build/vscdc info miniconda --no-build --markdown --cg --overwrite --prune --release main --github-repo devcontainers/images --registry mcr.microsoft.com --registryPath devcontainers
devcontainers CLI
Copyright (c) Microsoft Corporation. All rights reserved.
(*) Generating image information files...
(*) Pulling image mcr.microsoft.com/devcontainers/miniconda:dev-3...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/miniconda:dev-3
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082323703 mcr.microsoft.com/devcontainers/miniconda:dev-3 sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082323703 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082323703
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:9a2b681921b460987435a2378a1d34a5dd5c28bcd407472ce0bbd6ee927ed35e
(*) Spawn: docker exec -u root vscdc--extract--1741082323703 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082323703 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082323703 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.1" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.6.1.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.6.1.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20230311.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.88.1-10+deb12u8.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20230209-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.39.5-0+deb12u2.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.40-1.1.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.2.2-2.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 6.1.0-3.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 590-2.1~deb12u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.36-9+deb12u9.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.20.1-2+deb12u2.
(*) Fallback pool URL for libicu72 is undefined
(!) No URI found for libicu72 72.1-3.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.20.1-2+deb12u2.
(*) Fallback pool URL for liblttng-ust1 is undefined
(!) No URI found for liblttng-ust1 2.13.5-1.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 12.2.0-14.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.36-9+deb12u9.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 12.0-1.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.95.0-1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.11.2-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 6.03-2.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 6.03-2.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 7.2-1+deb12u1.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.18-0.2.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 2.10-0.1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:9.2p1-2+deb12u5.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:4.0.2-3.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.6-1.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.7-1+deb12u2.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 6.1-0.1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.13p3-1+deb12u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-28.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:9.0.1378-2.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21.3-1+b2.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-13.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.13.dfsg-1.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.9-4+b5.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082323703 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082323703 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082323703 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082323703 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Getting version for conda...
(*) Spawn: docker exec vscdc--extract--1741082323703 bash -c "set -e && echo ~~~BEGIN~~~ && conda --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082323703 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082323703
(!) Warning: No version for package pyOpenssl - skipping markdown output.
(*) Writing image history markdown...
(*) Spawn: docker image prune -a -f
(*) Writing cgmanifest.json...
(*) Done!

@Kaniska244
Copy link
Contributor Author

Debug console capture for anaconda image with the fix.

/usr/local/bin/node ./build/vscdc info anaconda --no-build --markdown --cg --overwrite --prune --release main --github-repo devcontainers/images --registry mcr.microsoft.com --registryPath devcontainers
devcontainers CLI
Copyright (c) Microsoft Corporation. All rights reserved.
(*) Generating image information files...
(*) Pulling image mcr.microsoft.com/devcontainers/anaconda:dev-3...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/anaconda:dev-3
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082553772 mcr.microsoft.com/devcontainers/anaconda:dev-3 sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082553772 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082553772
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:c648cbe03ce3001bc476038237a6fbfefba1993c7b79f5eab173032215d2bb42
(*) Spawn: docker exec -u root vscdc--extract--1741082553772 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082553772 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082553772 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.1" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.6.1.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.6.1.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20230311.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.88.1-10+deb12u8.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20230209-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.39.5-0+deb12u2.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.40-1.1.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.2.2-2.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 6.1.0-3.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 590-2.1~deb12u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.36-9+deb12u9.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.20.1-2+deb12u2.
(*) Fallback pool URL for libicu72 is undefined
(!) No URI found for libicu72 72.1-3.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.20.1-2+deb12u2.
(*) Fallback pool URL for liblttng-ust1 is undefined
(!) No URI found for liblttng-ust1 2.13.5-1.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 12.2.0-14.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.36-9+deb12u9.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 12.0-1.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.95.0-1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.11.2-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 6.03-2.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 6.03-2.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 7.2-1+deb12u1.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.18-0.2.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 2.10-0.1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:9.2p1-2+deb12u5.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:4.0.2-3.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.6-1.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.7-1+deb12u2.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 6.1-0.1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.13p3-1+deb12u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-28.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:9.0.1378-2.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21.3-1+b2.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-13.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.13.dfsg-1.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.9-4+b5.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082553772 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082553772 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082553772 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Getting version for conda...
(*) Spawn: docker exec vscdc--extract--1741082553772 bash -c "set -e && echo ~~~BEGIN~~~ && conda --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082553772 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Getting version for Jupyter Notebooks...
(*) Spawn: docker exec vscdc--extract--1741082553772 bash -c "set -e && echo ~~~BEGIN~~~ && jupyter-notebook --version && echo && echo ~~~END~~~"
(*) Getting version for Jupyter Lab...
(*) Spawn: docker exec vscdc--extract--1741082553772 bash -c "set -e && echo ~~~BEGIN~~~ && jupyter-lab --version && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082553772
(!) Warning: No version for package py - skipping markdown output.
(!) Warning: No version for package pyOpenssl - skipping markdown output.
(*) Writing image history markdown...
(*) Spawn: docker image prune -a -f
(*) Writing cgmanifest.json...
(*) Done!

@Kaniska244
Copy link
Contributor Author

Debug console capture for python image.

/usr/local/bin/node ./build/vscdc info python --no-build --markdown --cg --overwrite --prune --release main --github-repo devcontainers/images --registry mcr.microsoft.com --registryPath devcontainers
devcontainers CLI
Copyright (c) Microsoft Corporation. All rights reserved.
(*) Generating image information files...

(*) Processing variant 3.13-bookworm...
(*) Pulling image mcr.microsoft.com/devcontainers/python:dev-3.13-bookworm...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/python:dev-3.13-bookworm
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082734012 mcr.microsoft.com/devcontainers/python:dev-3.13-bookworm sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082734012 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082734012
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:dd287879f14cfb0f9bdd3df67384f72ee0b5236ad876536ea788aa4e3706239b
(*) Spawn: docker exec -u root vscdc--extract--1741082734012 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082734012 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082734012 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.6.1.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.6.1.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20230311.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.88.1-10+deb12u8.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20230209-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.39.5-0+deb12u2.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.40-1.1.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.2.2-2.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 6.1.0-3.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 590-2.1~deb12u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.36-9+deb12u9.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.20.1-2+deb12u2.
(*) Fallback pool URL for libicu72 is undefined
(!) No URI found for libicu72 72.1-3.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.20.1-2+deb12u2.
(*) Fallback pool URL for liblttng-ust1 is undefined
(!) No URI found for liblttng-ust1 2.13.5-1.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 12.2.0-14.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.36-9+deb12u9.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 12.0-1.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.95.0-1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.11.2-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 6.03-2.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 6.03-2.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 7.2-1+deb12u1.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.18-0.2.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 2.10-0.1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:9.2p1-2+deb12u5.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:4.0.2-3.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.6-1.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.7-1+deb12u2.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 6.1-0.1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.13p3-1+deb12u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-28.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:9.0.1378-2.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21.3-1+b2.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-13.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.13.dfsg-1.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.9-4+b5.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.1" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082734012 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082734012 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082734012 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvm at /usr/local/share/nvm...
(*) Spawn: docker exec -u root vscdc--extract--1741082734012 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/nvm\" && cd \"/usr/local/share/nvm\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082734012 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082734012 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082734012

(*) Processing variant 3.12-bookworm...
(*) Pulling image mcr.microsoft.com/devcontainers/python:dev-3.12-bookworm...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/python:dev-3.12-bookworm
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082756151 mcr.microsoft.com/devcontainers/python:dev-3.12-bookworm sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082756151 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082756151
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:f63e77c6596c887ab9531ef6b56f82340c74a2c07019888c14e063af0e9d00f0
(*) Spawn: docker exec -u root vscdc--extract--1741082756151 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082756151 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082756151 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.6.1.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.6.1.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20230311.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.88.1-10+deb12u8.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20230209-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.39.5-0+deb12u2.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.40-1.1.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.2.2-2.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 6.1.0-3.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 590-2.1~deb12u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.36-9+deb12u9.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.20.1-2+deb12u2.
(*) Fallback pool URL for libicu72 is undefined
(!) No URI found for libicu72 72.1-3.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.20.1-2+deb12u2.
(*) Fallback pool URL for liblttng-ust1 is undefined
(!) No URI found for liblttng-ust1 2.13.5-1.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 12.2.0-14.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.36-9+deb12u9.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 12.0-1.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.95.0-1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.11.2-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 6.03-2.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 6.03-2.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 7.2-1+deb12u1.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.18-0.2.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 2.10-0.1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:9.2p1-2+deb12u5.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:4.0.2-3.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.6-1.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.7-1+deb12u2.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 6.1-0.1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.13p3-1+deb12u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-28.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:9.0.1378-2.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21.3-1+b2.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-13.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.13.dfsg-1.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.9-4+b5.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.1" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082756151 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082756151 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082756151 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvm at /usr/local/share/nvm...
(*) Spawn: docker exec -u root vscdc--extract--1741082756151 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/nvm\" && cd \"/usr/local/share/nvm\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082756151 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082756151 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082756151

(*) Processing variant 3.11-bookworm...
(*) Pulling image mcr.microsoft.com/devcontainers/python:dev-3.11-bookworm...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/python:dev-3.11-bookworm
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082779525 mcr.microsoft.com/devcontainers/python:dev-3.11-bookworm sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082779525 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082779525
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:f5937f4e44dd472d11e58ca268e775750ff85fa20d49041e781af8a430241f52
(*) Spawn: docker exec -u root vscdc--extract--1741082779525 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082779525 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082779525 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.1" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.6.1.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.6.1.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20230311.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.88.1-10+deb12u8.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20230209-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.39.5-0+deb12u2.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.40-1.1.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.2.2-2.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 6.1.0-3.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 590-2.1~deb12u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.36-9+deb12u9.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.20.1-2+deb12u2.
(*) Fallback pool URL for libicu72 is undefined
(!) No URI found for libicu72 72.1-3.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.20.1-2+deb12u2.
(*) Fallback pool URL for liblttng-ust1 is undefined
(!) No URI found for liblttng-ust1 2.13.5-1.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 12.2.0-14.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.36-9+deb12u9.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 12.0-1.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.95.0-1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.11.2-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 6.03-2.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 6.03-2.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 7.2-1+deb12u1.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.18-0.2.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 2.10-0.1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:9.2p1-2+deb12u5.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:4.0.2-3.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.6-1.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.7-1+deb12u2.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 6.1-0.1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.13p3-1+deb12u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-28.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:9.0.1378-2.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21.3-1+b2.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-13.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.13.dfsg-1.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.9-4+b5.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082779525 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082779525 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082779525 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvm at /usr/local/share/nvm...
(*) Spawn: docker exec -u root vscdc--extract--1741082779525 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/nvm\" && cd \"/usr/local/share/nvm\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082779525 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082779525 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082779525

(*) Processing variant 3.10-bookworm...
(*) Pulling image mcr.microsoft.com/devcontainers/python:dev-3.10-bookworm...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/python:dev-3.10-bookworm
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082803432 mcr.microsoft.com/devcontainers/python:dev-3.10-bookworm sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082803432 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082803432
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:2dfca6373b481a3cda75d6ca200e8659b14964fafcf0774bf6580c4271ab7f33
(*) Spawn: docker exec -u root vscdc--extract--1741082803432 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082803432 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082803432 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.1" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.6.1.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.6.1.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20230311.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.88.1-10+deb12u8.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20230209-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.39.5-0+deb12u2.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.40-1.1.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.2.2-2.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 6.1.0-3.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 590-2.1~deb12u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.36-9+deb12u9.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.20.1-2+deb12u2.
(*) Fallback pool URL for libicu72 is undefined
(!) No URI found for libicu72 72.1-3.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.20.1-2+deb12u2.
(*) Fallback pool URL for liblttng-ust1 is undefined
(!) No URI found for liblttng-ust1 2.13.5-1.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 12.2.0-14.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.36-9+deb12u9.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 12.0-1.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.95.0-1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.11.2-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 6.03-2.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 6.03-2.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 7.2-1+deb12u1.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.18-0.2.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 2.10-0.1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:9.2p1-2+deb12u5.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:4.0.2-3.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.6-1.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.7-1+deb12u2.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 6.1-0.1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.13p3-1+deb12u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-28.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:9.0.1378-2.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21.3-1+b2.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-13.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.13.dfsg-1.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.9-4+b5.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082803432 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082803432 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082803432 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvm at /usr/local/share/nvm...
(*) Spawn: docker exec -u root vscdc--extract--1741082803432 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/nvm\" && cd \"/usr/local/share/nvm\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082803432 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082803432 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082803432

(*) Processing variant 3.9-bookworm...
(*) Pulling image mcr.microsoft.com/devcontainers/python:dev-3.9-bookworm...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/python:dev-3.9-bookworm
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082827286 mcr.microsoft.com/devcontainers/python:dev-3.9-bookworm sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082827286 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082827286
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:555d02f6e03582f1bc75bf17df9ca7453ee008767dfda2bdca237506879cce4c
(*) Spawn: docker exec -u root vscdc--extract--1741082827286 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082827286 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082827286 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.1" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.6.1.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.6.1.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20230311.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.88.1-10+deb12u8.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20230209-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.39.5-0+deb12u2.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.40-1.1.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.2.2-2.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 6.1.0-3.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 590-2.1~deb12u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.36-9+deb12u9.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.20.1-2+deb12u2.
(*) Fallback pool URL for libicu72 is undefined
(!) No URI found for libicu72 72.1-3.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.20.1-2+deb12u2.
(*) Fallback pool URL for liblttng-ust1 is undefined
(!) No URI found for liblttng-ust1 2.13.5-1.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 12.2.0-14.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.36-9+deb12u9.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 12.0-1.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.95.0-1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.11.2-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 6.03-2.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 6.03-2.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 7.2-1+deb12u1.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.18-0.2.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 2.10-0.1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:9.2p1-2+deb12u5.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:4.0.2-3.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.6-1.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.7-1+deb12u2.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 6.1-0.1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.13p3-1+deb12u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-28.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:9.0.1378-2.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21.3-1+b2.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-13.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.13.dfsg-1.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.9-4+b5.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082827286 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082827286 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082827286 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvm at /usr/local/share/nvm...
(*) Spawn: docker exec -u root vscdc--extract--1741082827286 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/nvm\" && cd \"/usr/local/share/nvm\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082827286 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082827286 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082827286

(*) Processing variant 3.13-bullseye...
(*) Pulling image mcr.microsoft.com/devcontainers/python:dev-3.13-bullseye...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/python:dev-3.13-bullseye
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082874090 mcr.microsoft.com/devcontainers/python:dev-3.13-bullseye sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082874090 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082874090
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:1fe8e486c638989f1939ed749136a4eea62c52022c8309e803d908093b0f32e1
(*) Spawn: docker exec -u root vscdc--extract--1741082874090 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082874090 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082874090 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.2.4.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.2.4.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20210119.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.74.0-1.3+deb11u14.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20201126-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.30.2-1+deb11u4.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.27-2+deb11u2.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.0.5-7.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 5.10.0-4.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 551-2+deb11u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.31-13+deb11u11.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.18.3-6+deb11u6.
(*) Fallback pool URL for libicu67 is undefined
(!) No URI found for libicu67 67.1-7.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.18.3-6+deb11u6.
(*) Fallback pool URL for liblttng-ust0 is undefined
(!) No URI found for liblttng-ust0 2.12.1-1.
(!) Warning: Unable to parse output "liblttng-ust2 ~~v~~" - skipping.
(*) Fallback pool URL for libssl1.1 is undefined
(!) No URI found for libssl1.1 1.1.1w-0+deb11u2.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 10.2.1-6.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.31-13+deb11u11.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 11.1.0.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.93.2+dfsg-1.1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.9.4-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 5.10-1.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 5.10-1.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 5.4-2+deb11u3.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.15.1-1.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 1.60+git20181103.0eebece-1+deb11u1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:8.4p1-5+deb11u4.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:3.3.17-5.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.4-2.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.3-4+deb11u3.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 5.10-1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.5p2-3+deb11u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-26+deb11u1.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:8.2.2434-3+deb11u1.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21-1+deb11u1.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-12.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.11.dfsg-2+deb11u2.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.8-6+deb11u1.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082874090 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082874090 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082874090 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvm at /usr/local/share/nvm...
(*) Spawn: docker exec -u root vscdc--extract--1741082874090 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/nvm\" && cd \"/usr/local/share/nvm\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082874090 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082874090 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082874090

(*) Processing variant 3.12-bullseye...
(*) Pulling image mcr.microsoft.com/devcontainers/python:dev-3.12-bullseye...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/python:dev-3.12-bullseye
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082902425 mcr.microsoft.com/devcontainers/python:dev-3.12-bullseye sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082902425 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082902425
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:00320013e260b72a18d44509be8dbd1b2585111092b72137b625c3a3a7139609
(*) Spawn: docker exec -u root vscdc--extract--1741082902425 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082902425 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082902425 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.2.4.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.2.4.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20210119.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.74.0-1.3+deb11u14.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20201126-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.30.2-1+deb11u4.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.27-2+deb11u2.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.0.5-7.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 5.10.0-4.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 551-2+deb11u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.31-13+deb11u11.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.18.3-6+deb11u6.
(*) Fallback pool URL for libicu67 is undefined
(!) No URI found for libicu67 67.1-7.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.18.3-6+deb11u6.
(*) Fallback pool URL for liblttng-ust0 is undefined
(!) No URI found for liblttng-ust0 2.12.1-1.
(!) Warning: Unable to parse output "liblttng-ust2 ~~v~~" - skipping.
(*) Fallback pool URL for libssl1.1 is undefined
(!) No URI found for libssl1.1 1.1.1w-0+deb11u2.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 10.2.1-6.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.31-13+deb11u11.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 11.1.0.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.93.2+dfsg-1.1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.9.4-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 5.10-1.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 5.10-1.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 5.4-2+deb11u3.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.15.1-1.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 1.60+git20181103.0eebece-1+deb11u1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:8.4p1-5+deb11u4.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:3.3.17-5.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.4-2.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.3-4+deb11u3.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 5.10-1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.5p2-3+deb11u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-26+deb11u1.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:8.2.2434-3+deb11u1.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21-1+deb11u1.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-12.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.11.dfsg-2+deb11u2.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.8-6+deb11u1.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082902425 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082902425 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082902425 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvm at /usr/local/share/nvm...
(*) Spawn: docker exec -u root vscdc--extract--1741082902425 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/nvm\" && cd \"/usr/local/share/nvm\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082902425 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082902425 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082902425

(*) Processing variant 3.11-bullseye...
(*) Pulling image mcr.microsoft.com/devcontainers/python:dev-3.11-bullseye...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/python:dev-3.11-bullseye
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082928735 mcr.microsoft.com/devcontainers/python:dev-3.11-bullseye sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082928735 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082928735
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:1425ade2456b41b1c8568b2492c63624c30fb954ef14bc56480f4e2756fa521a
(*) Spawn: docker exec -u root vscdc--extract--1741082928735 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082928735 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082928735 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.2.4.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.2.4.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20210119.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.74.0-1.3+deb11u14.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20201126-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.30.2-1+deb11u4.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.27-2+deb11u2.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.0.5-7.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 5.10.0-4.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 551-2+deb11u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.31-13+deb11u11.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.18.3-6+deb11u6.
(*) Fallback pool URL for libicu67 is undefined
(!) No URI found for libicu67 67.1-7.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.18.3-6+deb11u6.
(*) Fallback pool URL for liblttng-ust0 is undefined
(!) No URI found for liblttng-ust0 2.12.1-1.
(!) Warning: Unable to parse output "liblttng-ust2 ~~v~~" - skipping.
(*) Fallback pool URL for libssl1.1 is undefined
(!) No URI found for libssl1.1 1.1.1w-0+deb11u2.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 10.2.1-6.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.31-13+deb11u11.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 11.1.0.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.93.2+dfsg-1.1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.9.4-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 5.10-1.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 5.10-1.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 5.4-2+deb11u3.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.15.1-1.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 1.60+git20181103.0eebece-1+deb11u1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:8.4p1-5+deb11u4.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:3.3.17-5.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.4-2.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.3-4+deb11u3.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 5.10-1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.5p2-3+deb11u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-26+deb11u1.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:8.2.2434-3+deb11u1.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21-1+deb11u1.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-12.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.11.dfsg-2+deb11u2.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.8-6+deb11u1.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082928735 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082928735 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082928735 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvm at /usr/local/share/nvm...
(*) Spawn: docker exec -u root vscdc--extract--1741082928735 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/nvm\" && cd \"/usr/local/share/nvm\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082928735 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082928735 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082928735

(*) Processing variant 3.10-bullseye...
(*) Pulling image mcr.microsoft.com/devcontainers/python:dev-3.10-bullseye...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/python:dev-3.10-bullseye
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082956810 mcr.microsoft.com/devcontainers/python:dev-3.10-bullseye sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082956810 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082956810
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:2e2ff5b797ffce97674cb58297ffc1e34f221d27b8c3cd336bb07415008a4001
(*) Spawn: docker exec -u root vscdc--extract--1741082956810 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082956810 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082956810 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.2.4.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.2.4.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20210119.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.74.0-1.3+deb11u14.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20201126-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.30.2-1+deb11u4.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.27-2+deb11u2.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.0.5-7.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 5.10.0-4.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 551-2+deb11u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.31-13+deb11u11.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.18.3-6+deb11u6.
(*) Fallback pool URL for libicu67 is undefined
(!) No URI found for libicu67 67.1-7.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.18.3-6+deb11u6.
(*) Fallback pool URL for liblttng-ust0 is undefined
(!) No URI found for liblttng-ust0 2.12.1-1.
(!) Warning: Unable to parse output "liblttng-ust2 ~~v~~" - skipping.
(*) Fallback pool URL for libssl1.1 is undefined
(!) No URI found for libssl1.1 1.1.1w-0+deb11u2.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 10.2.1-6.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.31-13+deb11u11.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 11.1.0.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.93.2+dfsg-1.1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.9.4-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 5.10-1.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 5.10-1.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 5.4-2+deb11u3.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.15.1-1.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 1.60+git20181103.0eebece-1+deb11u1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:8.4p1-5+deb11u4.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:3.3.17-5.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.4-2.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.3-4+deb11u3.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 5.10-1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.5p2-3+deb11u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-26+deb11u1.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:8.2.2434-3+deb11u1.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21-1+deb11u1.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-12.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.11.dfsg-2+deb11u2.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.8-6+deb11u1.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082956810 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082956810 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082956810 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvm at /usr/local/share/nvm...
(*) Spawn: docker exec -u root vscdc--extract--1741082956810 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/nvm\" && cd \"/usr/local/share/nvm\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082956810 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082956810 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082956810

(*) Processing variant 3.9-bullseye...
(*) Pulling image mcr.microsoft.com/devcontainers/python:dev-3.9-bullseye...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/python:dev-3.9-bullseye
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741082983104 mcr.microsoft.com/devcontainers/python:dev-3.9-bullseye sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741082983104 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741082983104
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:b658c87a852cfe54c664f2b1fb11ef2a594142c1b207f0ff6a7cbd9670b8d682
(*) Spawn: docker exec -u root vscdc--extract--1741082983104 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741082983104 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741082983104 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh yarn || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(!) Warning: Unable to parse output "dpkg-query: no packages found matching libssl1.0.[0-9]" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(*) Fallback pool URL for apt-transport-https is undefined
(!) No URI found for apt-transport-https 2.2.4.
(*) Fallback pool URL for apt-utils is undefined
(!) No URI found for apt-utils 2.2.4.
(*) Fallback pool URL for ca-certificates is undefined
(!) No URI found for ca-certificates 20210119.
(*) Fallback pool URL for curl is undefined
(!) No URI found for curl 7.74.0-1.3+deb11u14.
(*) Fallback pool URL for dialog is undefined
(!) No URI found for dialog 1.3-20201126-1.
(*) Fallback pool URL for git is undefined
(!) No URI found for git 1:2.30.2-1+deb11u4.
(*) Fallback pool URL for gnupg2 is undefined
(!) No URI found for gnupg2 2.2.27-2+deb11u2.
(*) Fallback pool URL for htop is undefined
(!) No URI found for htop 3.0.5-7.
(*) Fallback pool URL for iproute2 is undefined
(!) No URI found for iproute2 5.10.0-4.
(*) Fallback pool URL for jq is undefined
(!) No URI found for jq 1.6-2.1.
(*) Fallback pool URL for less is undefined
(!) No URI found for less 551-2+deb11u2.
(*) Fallback pool URL for libc6 is undefined
(!) No URI found for libc6 2.31-13+deb11u11.
(!) Warning: Unable to parse output "libgcc1 ~~v~~" - skipping.
(*) Fallback pool URL for libgssapi-krb5-2 is undefined
(!) No URI found for libgssapi-krb5-2 1.18.3-6+deb11u6.
(*) Fallback pool URL for libicu67 is undefined
(!) No URI found for libicu67 67.1-7.
(*) Fallback pool URL for libkrb5-3 is undefined
(!) No URI found for libkrb5-3 1.18.3-6+deb11u6.
(*) Fallback pool URL for liblttng-ust0 is undefined
(!) No URI found for liblttng-ust0 2.12.1-1.
(!) Warning: Unable to parse output "liblttng-ust2 ~~v~~" - skipping.
(*) Fallback pool URL for libssl1.1 is undefined
(!) No URI found for libssl1.1 1.1.1w-0+deb11u2.
(*) Fallback pool URL for libstdc++6 is undefined
(!) No URI found for libstdc++6 10.2.1-6.
(*) Fallback pool URL for locales is undefined
(!) No URI found for locales 2.31-13+deb11u11.
(*) Fallback pool URL for lsb-release is undefined
(!) No URI found for lsb-release 11.1.0.
(*) Fallback pool URL for lsof is undefined
(!) No URI found for lsof 4.93.2+dfsg-1.1.
(*) Fallback pool URL for man-db is undefined
(!) No URI found for man-db 2.9.4-2.
(*) Fallback pool URL for manpages is undefined
(!) No URI found for manpages 5.10-1.
(*) Fallback pool URL for manpages-dev is undefined
(!) No URI found for manpages-dev 5.10-1.
(*) Fallback pool URL for nano is undefined
(!) No URI found for nano 5.4-2+deb11u3.
(*) Fallback pool URL for ncdu is undefined
(!) No URI found for ncdu 1.15.1-1.
(*) Fallback pool URL for net-tools is undefined
(!) No URI found for net-tools 1.60+git20181103.0eebece-1+deb11u1.
(*) Fallback pool URL for openssh-client is undefined
(!) No URI found for openssh-client 1:8.4p1-5+deb11u4.
(*) Fallback pool URL for procps is undefined
(!) No URI found for procps 2:3.3.17-5.
(*) Fallback pool URL for psmisc is undefined
(!) No URI found for psmisc 23.4-2.
(*) Fallback pool URL for rsync is undefined
(!) No URI found for rsync 3.2.3-4+deb11u3.
(*) Fallback pool URL for strace is undefined
(!) No URI found for strace 5.10-1.
(*) Fallback pool URL for sudo is undefined
(!) No URI found for sudo 1.9.5p2-3+deb11u1.
(*) Fallback pool URL for unzip is undefined
(!) No URI found for unzip 6.0-26+deb11u1.
(*) Fallback pool URL for vim-tiny is undefined
(!) No URI found for vim-tiny 2:8.2.2434-3+deb11u1.
(*) Fallback pool URL for wget is undefined
(!) No URI found for wget 1.21-1+deb11u1.
(*) Fallback pool URL for yarn is https://dl.yarnpkg.com/debian
(*) Fallback pool URL for zip is undefined
(!) No URI found for zip 3.0-12.
(*) Fallback pool URL for zlib1g is undefined
(!) No URI found for zlib1g 1:1.2.11.dfsg-2+deb11u2.
(*) Fallback pool URL for zsh is undefined
(!) No URI found for zsh 5.8-6+deb11u1.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082983104 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741082983104 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/vscode/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741082983104 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/vscode/.oh-my-zsh\" && cd \"/home/vscode/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvm at /usr/local/share/nvm...
(*) Spawn: docker exec -u root vscdc--extract--1741082983104 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/nvm\" && cd \"/usr/local/share/nvm\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741082983104 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Python...
(*) Spawn: docker exec vscdc--extract--1741082983104 bash -c "set -e && echo ~~~BEGIN~~~ && python --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741082983104
(*) Writing image history markdown...
(*) Spawn: docker image prune -a -f
(*) Writing cgmanifest.json...
(*) Done!

@Kaniska244
Copy link
Contributor Author

Debug console capture for universal image.

/usr/local/bin/node ./build/vscdc info universal --no-build --markdown --cg --overwrite --prune --release main --github-repo devcontainers/images --registry mcr.microsoft.com --registryPath devcontainers
devcontainers CLI
Copyright (c) Microsoft Corporation. All rights reserved.
(*) Generating image information files...
(*) Pulling image mcr.microsoft.com/devcontainers/universal:dev-focal...
(*) Spawn: docker pull mcr.microsoft.com/devcontainers/universal:dev-focal
(*) Spawn: docker run -d --rm --init --privileged --name vscdc--extract--1741083309780 mcr.microsoft.com/devcontainers/universal:dev-focal sh -c "while sleep 1000; do :; done"
(*) Spawn: docker exec -u root vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && cat /etc/os-release && echo && echo ~~~END~~~"
(*) Spawn: docker inspect --format='{{.Image}}' vscdc--extract--1741083309780
(*) Spawn: docker inspect --format='{{index .RepoDigests 0}}' sha256:b9c617ef81feece74564f05a56c0702b21067c057eeb1b5d05c3e22da7ad7ac9
(*) Spawn: docker exec -u root vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && id -un 1000 && echo && echo ~~~END~~~"
(*) Gathering information about Linux package versions...
(*) Spawn: docker exec -u root vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && dpkg-query --show -f='\${Package} ~~v~~ \${Version}
' apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh moby-cli moby-engine git-lfs cmake build-essential cmake cppcheck valgrind lldb llvm gdb clang python3-dev vim vim-doc xtail software-properties-common libsecret-1-dev libnss3 libnspr4 libatk-bridge2.0-0 libatk1.0-0 libx11-6 libpangocairo-1.0-0 libx11-xcb1 libcups2 libxcomposite1 libxdamage1 libxfixes3 libpango-1.0-0 libgbm1 libgtk-3-0 openssh-server lxc pigz iptables tar g++ gcc libc6-dev make pkg-config sed python3-minimal || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(*) Gathering information about Linux package download URLs...
(*) Spawn: docker exec -u root vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && apt-get update && apt-get install -y --reinstall --print-uris apt-utils git openssh-client gnupg2 iproute2 procps lsof htop net-tools psmisc curl wget rsync ca-certificates unzip zip nano vim-tiny less jq lsb-release apt-transport-https dialog libc6 libgcc1 libkrb5-3 libgssapi-krb5-2 libicu[0-9][0-9] liblttng-ust[0-9] libstdc++6 zlib1g locales sudo ncdu man-db strace libssl1.1 libssl1.0.[0-9] manpages manpages-dev manpages-posix manpages-posix-dev zsh moby-cli moby-engine git-lfs cmake build-essential cmake cppcheck valgrind lldb llvm gdb clang python3-dev vim vim-doc xtail software-properties-common libsecret-1-dev libnss3 libnspr4 libatk-bridge2.0-0 libatk1.0-0 libx11-6 libpangocairo-1.0-0 libx11-xcb1 libcups2 libxcomposite1 libxdamage1 libxfixes3 libpango-1.0-0 libgbm1 libgtk-3-0 openssh-server lxc pigz iptables tar g++ gcc libc6-dev make pkg-config sed python3-minimal || echo 'Some packages were not found.' && echo && echo ~~~END~~~"
(!) Warning: Unable to parse output "liblttng-ust2 ~~v~~" - skipping.
(!) Warning: Unable to parse output "libssl1.0.0 ~~v~~" - skipping.
(!) Warning: Unable to parse output "libssl1.0.2 ~~v~~" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching manpages-posix-dev" - skipping.
(!) Warning: Unable to parse output "dpkg-query: no packages found matching lxc" - skipping.
(!) Warning: Some specified packages were not found.
(*) Gathering information about pip packages...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && pip list --disable-pip-version-check --format json && echo && echo ~~~END~~~"
(*) Gathering information about pip packages...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && pipx list && echo && echo ~~~END~~~"
(*) Gathering information about gems...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && bash -l -c 'set -e && gem list -d --local' 2>/dev/null && echo && echo ~~~END~~~"
(*) Gathering information about go modules and packages...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && cat /usr/local/etc/vscode-dev-containers/go.log && echo && echo ~~~END~~~"
(*) Getting remote and commit for Oh My Zsh! at /home/codespace/.oh-my-zsh...
(*) Spawn: docker exec -u root vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/home/codespace/.oh-my-zsh\" && cd \"/home/codespace/.oh-my-zsh\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvm at /usr/local/share/nvm...
(*) Spawn: docker exec -u root vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/nvm\" && cd \"/usr/local/share/nvm\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for nvs at /usr/local/nvs...
(*) Spawn: docker exec -u root vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/nvs\" && cd \"/usr/local/nvs\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for rbenv at /usr/local/share/rbenv...
(*) Spawn: docker exec -u root vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/rbenv\" && cd \"/usr/local/share/rbenv\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Getting remote and commit for ruby-build at /usr/local/share/ruby-build...
(*) Spawn: docker exec -u root vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && git config --global --add safe.directory \"/usr/local/share/ruby-build\" && cd \"/usr/local/share/ruby-build\" && if [ -f \".git-remote-and-commit\" ]; then cat .git-remote-and-commit; else git remote get-url origin && git log -n 1 --pretty=format:%H -- . | tee /dev/null; fi && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for git...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && git --version | sed -n '/git version /s///p' && echo && echo ~~~END~~~"
(*) Getting version for Xdebug...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && php --version | grep -oP 'with\s+Xdebug\s+v\K[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Getting version for Composer...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && composer --no-ansi --version 2>/dev/null | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Getting version for kubectl...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && kubectl version --client --output=json | jq -r '.clientVersion .gitVersion' && echo && echo ~~~END~~~"
(*) Getting version for Helm...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && helm version | grep -oP 'Version\s*:\s*\"v\K[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Getting version for Docker Compose...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && docker-compose version | grep -m 1 -oE '[0-9]+\.[0-9]+\.[0-9]+[+0-9a-z]*' && echo && echo ~~~END~~~"
(*) Getting version for SDKMAN!...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && . /usr/local/sdkman/bin/sdkman-init.sh && echo 'n' | sdk version | grep -oP 'SDKMAN\s+\K[0-9]+\.[0-9]+\.[0-9]+[+0-9a-z]*' | tr -d '[:cntrl:]' && echo && echo ~~~END~~~"
(*) Getting version for rvm...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && cat /usr/local/rvm/VERSION && echo && echo ~~~END~~~"
(*) Getting version for GitHub CLI...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && gh version 2>&1 | grep -oP 'version\s\K[^ ]+' && echo && echo ~~~END~~~"
(*) Getting version for yarn...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && yarn --version && echo && echo ~~~END~~~"
(*) Getting version for Maven...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && mvn -version | grep -oP '^Apache\sMaven\s+\K[0-9]+\.[0-9]+[\.+0-9a-z]*' && echo && echo ~~~END~~~"
(*) Getting version for Gradle...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && gradle --version | grep -oP '^Gradle\s+\K[0-9]+\.[0-9]+(\.[0-9]+)?$' && echo && echo ~~~END~~~"
(*) Getting version for Docker (Moby) CLI & Engine...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && docker --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+[+0-9a-z]*' && echo && echo ~~~END~~~"
(*) Getting version for conda...
(*) Spawn: docker exec vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && conda --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Gathering information about "other" components...
(*) Getting version for Node.js...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && ls /usr/local/share/nvm/versions/node | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Getting version for Python...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && ls /usr/local/python | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Getting version for Java...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && ls /usr/local/sdkman/candidates/java | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Getting version for .NET...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && dotnet --version && echo && echo ~~~END~~~"
(*) Getting version for Ruby...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && ls /usr/local/rvm/rubies | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Getting version for PHP...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && ls /usr/local/php | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Getting version for GCC...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && gcc --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+.*)' | tr -d ')' && echo && echo ~~~END~~~"
(*) Getting version for Clang...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && clang --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+.*' && echo && echo ~~~END~~~"
(*) Getting version for Go...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && go version | grep -oP -m 1 'version\sgo\K[^ ]+' && echo && echo ~~~END~~~"
(*) Getting version for Jekyll...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && jekyll --version | grep -oE '[0-9]+\.[0-9]+\.[0-9]+' && echo && echo ~~~END~~~"
(*) Getting version for Jupyter Lab...
(*) Spawn: docker exec -u codespace vscdc--extract--1741083309780 bash -c "set -e && echo ~~~BEGIN~~~ && jupyter-lab --version && echo && echo ~~~END~~~"
(*) Spawn: docker rm -f vscdc--extract--1741083309780
(!) Warning: No version for package wheel - skipping markdown output.
(!) Warning: No version for package undefined - skipping markdown output.
(!) Warning: No version for package undefined - skipping markdown output.
(!) Warning: No version for package SDKMAN! - skipping markdown output.
(*) Writing image history markdown...
(*) Spawn: docker image prune -a -f
(*) Writing cgmanifest.json...
(*) Done!

@Kaniska244 Kaniska244 marked this pull request as ready for review March 4, 2025 10:29
@Kaniska244 Kaniska244 requested a review from a team as a code owner March 4, 2025 10:29
@Kaniska244 Kaniska244 requested a review from ddoyle2017 March 4, 2025 10:29
Copy link
Contributor

@ddoyle2017 ddoyle2017 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the update!

@ddoyle2017 ddoyle2017 merged commit 815b0ac into devcontainers:main Mar 6, 2025
18 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants