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

Debian images missing sources.list, which causes certain features to fail #760

Closed
sr229 opened this issue Sep 23, 2023 · 7 comments
Closed
Assignees

Comments

@sr229
Copy link

sr229 commented Sep 23, 2023

looks like base-debian images are missing their /etc/apt/sources.list, which causes features like ghcr.io/devcontainers/features/common-utils:2 to fail since they interact with APT for dependencies.

@samruddhikhandale
Copy link
Member

samruddhikhandale commented Sep 26, 2023

Hi 👋

Thanks for reporting.

@alexander-smolyakov Can you help prioritizing and investigating this issue? thanks!

@alexander-smolyakov
Copy link
Contributor

Hey @sr229, the /etc/apt/sources.list file is not presented in the original debian:bookworm docker image, so that is why it's not presented in the base-debian devcontainer. I checked that the apt-get command works fine.

root ➜ / $ apt-get update
Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
Get:2 http://deb.debian.org/debian bookworm-updates InRelease [52.1 kB]
Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
Get:4 http://deb.debian.org/debian bookworm/main amd64 Packages [8906 kB]
Get:5 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6408 B]
Get:6 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [62.6 kB]
Fetched 9226 kB in 3s (2929 kB/s)
Reading package lists... Done
root ➜ / $ apt-get -y install --no-install-recommends wget
Reading package lists... Done
Building dependency tree... Done
Reading state information... Done
wget is already the newest version (1.21.3-1+b2).
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
root ➜ / $

It is worth mentioning that the base-debian devcontainer is already bundled with the ghcr.io/devcontainers/features/common-utils:2 feature.

"features": {
"ghcr.io/devcontainers/features/common-utils:2": {
"installZsh": "true",
"username": "vscode",
"userUid": "1000",
"userGid": "1000",
"upgradePackages": "true"
},
"ghcr.io/devcontainers/features/git:1": {
"version": "latest",
"ppa": "false"
}
},

Could you please provide more information about your case?

Also, it would be great if you could share the definition of your devcontainer. It could help to speed up the investigation process.

@sr229
Copy link
Author

sr229 commented Sep 29, 2023

Also, it would be great if you could share the definition of your devcontainer. It could help to speed up the investigation process.

Using this devcontainer config from our config, when we tried using it in codespaces, it fails once it reaches ghcr.io/devcontainers/features/common-utils:2 because it wants to find /etc/apt/sources.list but fails to do so.

{
  "name": "DevSample",
  "image": "mcr.microsoft.com/devcontainers/base:debian",
  "mounts": [
    "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind"
  ],
  "features": {
    "ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
    "ghcr.io/devcontainers/features/github-cli:1": {},
    "ghcr.io/devcontainers/features/ruby:1": {},
    "ghcr.io/devcontainers/features/node:1": {
      "version": "20"
    },
    "ghcr.io/devcontainers/features/common-utils:2": {
      "nonFreePackages": true,
      "upgradePackages": true
    }
  }

@sr229
Copy link
Author

sr229 commented Sep 29, 2023

Here is the creation log with the config

=================================================================================
2023-09-29 06:34:32.673Z: Configuration starting...
2023-09-29 06:34:32.686Z: Cloning...

=================================================================================
2023-09-29 06:34:32.725Z: Creating container...
2023-09-29 06:34:32.754Z: $ devcontainer up --id-label Type=codespaces --workspace-folder /var/lib/docker/codespacemount/workspace/visionsense-next --mount type=bind,source=/.codespaces/agent/mount/cache,target=/vscode --user-data-folder /var/lib/docker/codespacemount/.persistedshare --container-data-folder .vscode-remote/data/Machine --container-system-data-folder /var/vscode-remote --log-level trace --log-format json --update-remote-user-uid-default never --mount-workspace-git-root false --omit-config-remote-env-from-metadata --skip-non-blocking-commands --skip-post-create --remove-existing-container --config "/var/lib/docker/codespacemount/workspace/visionsense-next/.devcontainer/devcontainer.json" --override-config /root/.codespaces/shared/merged_devcontainer.json --default-user-env-probe loginInteractiveShell --container-session-data-folder /workspaces/.codespaces/.persistedshare/devcontainers-cli/cache --secrets-file /root/.codespaces/shared/user-secrets-envs.json
2023-09-29 06:34:32.917Z: @devcontainers/cli 0.51.3. Node.js v18.17.1. linux 6.2.0-1012-azure x64.
2023-09-29 06:34:33.574Z: Resolving Feature dependencies for 'ghcr.io/devcontainers/features/docker-outside-of-docker:1'...
2023-09-29 06:34:36.139Z: Resolving Feature dependencies for 'ghcr.io/devcontainers/features/github-cli:1'...
2023-09-29 06:34:38.761Z: Resolving Feature dependencies for 'ghcr.io/devcontainers/features/ruby:1'...
2023-09-29 06:34:39.380Z: Resolving Feature dependencies for 'ghcr.io/devcontainers/features/node:1'...
2023-09-29 06:34:39.995Z: Resolving Feature dependencies for 'ghcr.io/devcontainers-contrib/features/prettier:1'...
2023-09-29 06:34:41.951Z: Resolving Feature dependencies for 'ghcr.io/devcontainers/features/common-utils:2'...
2023-09-29 06:34:42.274Z: Soft-dependency 'ghcr.io/devcontainers/features/git' is not required.  Removing from installation order...
2023-09-29 06:34:42.279Z: Soft-dependency 'ghcr.io/devcontainers-contrib/features/npm-package' is not required.  Removing from installation order...
2023-09-29 06:34:45.739Z: $debian --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp --target dev_containers_target_stage -t vsc-visionsense-next-e62775ff136c615683c0043f03787e0fe0fe790f047fbe439719e7538d83f2b8-features -f /tmp/devcontainercli-root/container-features/0.51.3-1695969273547/Dockerfile.extended /var/lib/docker/codespacemount/.persistedshare/empty-folder
2023-09-29 06:34:46.133Z: #0 building with "default" instance using docker driver

#1 [internal] load build definition from Dockerfile.extended
#1 transferring dockerfile: 6.22kB done
2023-09-29 06:34:46.135Z: #1 DONE 0.1s

#2 [internal] load .dockerignore
#2 transferring context: 2B done
#2 DONE 0.1s
2023-09-29 06:34:46.283Z: 
#3 resolve image config for docker.io/docker/dockerfile:1.4
2023-09-29 06:34:47.035Z: #3 ...

#4 [auth] docker/dockerfile:pull token for registry-1.docker.io
#4 DONE 0.0s
2023-09-29 06:34:47.185Z: 
2023-09-29 06:34:47.191Z: #3 resolve image config for docker.io/docker/dockerfile:1.42023-09-29 06:34:47.196Z: 
2023-09-29 06:34:48.250Z: #3 DONE 2.0s

#5 docker-image://docker.io/docker/dockerfile:1.4@sha256:9ba7531bd80fb0a858632727cf7a112fbfd19b17e94c4e84ced81e24ef1a0dbc
#5 CACHED
2023-09-29 06:34:48.678Z: 
2023-09-29 06:34:48.680Z: #6 [context dev_containers_feature_content_source] load .dockerignore
2023-09-29 06:34:48.785Z: #6 transferring dev_containers_feature_content_source: 2B done
#6 DONE 0.1s

#7 [internal] load metadata for mcr.microsoft.com/devcontainers/base:debian
2023-09-29 06:34:49.236Z: #7 DONE 0.5s
2023-09-29 06:34:49.386Z: 
#8 [context dev_containers_feature_content_source] load from client
2023-09-29 06:34:49.388Z: #8 transferring dev_containers_feature_content_source: 141.35kB 0.0s done
2023-09-29 06:34:49.537Z: #8 DONE 0.2s

#9 [dev_containers_feature_content_normalize 1/3] FROM mcr.microsoft.com/devcontainers/base:debian@sha256:51c38a8a080b1f31c7e041a3f0f4829d6c618b50f7562864f603a8ee33b46b9d
#9 resolve mcr.microsoft.com/devcontainers/base:debian@sha256:51c38a8a080b1f31c7e041a3f0f4829d6c618b50f7562864f603a8ee33b46b9d 0.2s done
2023-09-29 06:34:49.638Z: #9 sha256:51c38a8a080b1f31c7e041a3f0f4829d6c618b50f7562864f603a8ee33b46b9d 1.61kB / 1.61kB done2023-09-29 06:34:49.642Z: 
#9 sha256:21deeb9a7ae456d48e3c2ac92456154d865ff77c6a9f8c0a65ebad288978aefa 1.81kB / 1.81kB done
#9 sha256:a94a5a35318af652229b3ab7589609a0c8f2cf01fa120ab2c3e0845c2409fe17 9.14kB / 9.14kB done
#9 sha256:012c0b3e998c1a0c0bedcf712eaaafb188580529dd026a04aa1ce13fdb39e42b 0B / 49.56MB 0.1s
2023-09-29 06:34:49.740Z: #9 sha256:012c0b3e998c1a0c0bedcf712eaaafb188580529dd026a04aa1ce13fdb39e42b 5.24MB / 49.56MB 0.2s
2023-09-29 06:34:49.743Z: #9 sha256:00046d1e755ea94fa55a700ca9a10597e4fac7c47be19d970a359b0267a51fbf 4.19MB / 24.03MB 0.2s
#9 sha256:725cb263eccf677f702523ca113b3d4fb7a10889ff4be42020ed89d88f5549a8 0B / 411B 0.2s
2023-09-29 06:34:49.890Z: #9 sha256:012c0b3e998c1a0c0bedcf712eaaafb188580529dd026a04aa1ce13fdb39e42b 13.63MB / 49.56MB 0.3s
2023-09-29 06:34:49.893Z: #9 sha256:00046d1e755ea94fa55a700ca9a10597e4fac7c47be19d970a359b0267a51fbf 13.63MB / 24.03MB 0.3s
#9 sha256:725cb263eccf677f702523ca113b3d4fb7a10889ff4be42020ed89d88f5549a8 411B / 411B 0.3s done
2023-09-29 06:34:50.040Z: #9 sha256:012c0b3e998c1a0c0bedcf712eaaafb188580529dd026a04aa1ce13fdb39e42b 22.02MB / 49.56MB 0.4s
2023-09-29 06:34:50.043Z: #9 sha256:00046d1e755ea94fa55a700ca9a10597e4fac7c47be19d970a359b0267a51fbf 24.03MB / 24.03MB 0.4s
#9 sha256:f8d6210daf4fac88cb197f1dff914daddaa44d0f2aec9fd44785c214b280b5ed 134B / 134B 0.4s
2023-09-29 06:34:50.190Z: #9 sha256:012c0b3e998c1a0c0bedcf712eaaafb188580529dd026a04aa1ce13fdb39e42b 36.70MB / 49.56MB 0.6s
#9 sha256:00046d1e755ea94fa55a700ca9a10597e4fac7c47be19d970a359b0267a51fbf 24.03MB / 24.03MB 0.5s done
2023-09-29 06:34:50.192Z: #9 sha256:f8d6210daf4fac88cb197f1dff914daddaa44d0f2aec9fd44785c214b280b5ed 134B / 134B 0.5s done
#9 sha256:86790f32e15e3c9d8a1b871b7de0f179c890eaecde663cc0d59064820f7e8ef3 0B / 224B 0.6s
#9 sha256:f1dd26225a3c198c137d5e9a9329e451bb8d069e5eafc424fd07ab2cf188435b 0B / 233B 0.6s
2023-09-29 06:34:50.339Z: #9 sha256:012c0b3e998c1a0c0bedcf712eaaafb188580529dd026a04aa1ce13fdb39e42b 49.56MB / 49.56MB 0.8s
#9 sha256:86790f32e15e3c9d8a1b871b7de0f179c890eaecde663cc0d59064820f7e8ef3 224B / 224B 0.8s done
#9 sha256:f1dd26225a3c198c137d5e9a9329e451bb8d069e5eafc424fd07ab2cf188435b 233B / 233B 0.7s done
2023-09-29 06:34:50.344Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 0B / 99.96MB 0.8s
2023-09-29 06:34:50.439Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 5.24MB / 99.96MB 0.9s
2023-09-29 06:34:50.559Z: #9 sha256:012c0b3e998c1a0c0bedcf712eaaafb188580529dd026a04aa1ce13fdb39e42b 49.56MB / 49.56MB 1.0s done
2023-09-29 06:34:50.571Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 13.63MB / 99.96MB 1.0s
#9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 0B / 165.88MB 1.0s
#9 extracting sha256:012c0b3e998c1a0c0bedcf712eaaafb188580529dd026a04aa1ce13fdb39e42b
2023-09-29 06:34:50.684Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 22.02MB / 99.96MB 1.1s
2023-09-29 06:34:50.785Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 29.36MB / 99.96MB 1.2s
2023-09-29 06:34:50.788Z: #9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 9.44MB / 165.88MB 1.2s
2023-09-29 06:34:50.935Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 36.70MB / 99.96MB 1.3s
#9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 17.83MB / 165.88MB 1.3s2023-09-29 06:34:50.942Z: 
2023-09-29 06:34:51.039Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 52.43MB / 99.96MB 1.5s
2023-09-29 06:34:51.044Z: #9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 34.60MB / 165.88MB 1.5s
2023-09-29 06:34:51.143Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 60.82MB / 99.96MB 1.6s
2023-09-29 06:34:51.149Z: #9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 43.28MB / 165.88MB 1.6s
2023-09-29 06:34:51.294Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 69.21MB / 99.96MB 1.7s
#9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 52.76MB / 165.88MB 1.7s
2023-09-29 06:34:51.439Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 77.59MB / 99.96MB 1.8s
2023-09-29 06:34:51.446Z: #9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 61.87MB / 165.88MB 1.8s
2023-09-29 06:34:51.541Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 92.27MB / 99.96MB 2.0s
2023-09-29 06:34:51.548Z: #9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 80.66MB / 165.88MB 2.0s
2023-09-29 06:34:51.647Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 99.96MB / 99.96MB 2.1s
#9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 90.18MB / 165.88MB 2.1s
2023-09-29 06:34:51.788Z: #9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 99.61MB / 165.88MB 2.2s
2023-09-29 06:34:52.005Z: #9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 117.44MB / 165.88MB 2.4s2023-09-29 06:34:52.014Z: 
2023-09-29 06:34:52.139Z: #9 sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 99.96MB / 99.96MB 2.5s done
2023-09-29 06:34:52.144Z: #9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 136.31MB / 165.88MB 2.6s
2023-09-29 06:34:52.245Z: #9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 144.70MB / 165.88MB 2.7s2023-09-29 06:34:52.253Z: 
2023-09-29 06:34:52.445Z: #9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 165.68MB / 165.88MB 2.9s
2023-09-29 06:34:53.071Z: #9 extracting sha256:012c0b3e998c1a0c0bedcf712eaaafb188580529dd026a04aa1ce13fdb39e42b 2.5s done
2023-09-29 06:34:53.221Z: #9 sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 165.88MB / 165.88MB 3.6s done
2023-09-29 06:34:53.372Z: #9 extracting sha256:00046d1e755ea94fa55a700ca9a10597e4fac7c47be19d970a359b0267a51fbf
2023-09-29 06:34:53.837Z: #9 extracting sha256:00046d1e755ea94fa55a700ca9a10597e4fac7c47be19d970a359b0267a51fbf 0.5s done
2023-09-29 06:34:54.739Z: #9 extracting sha256:725cb263eccf677f702523ca113b3d4fb7a10889ff4be42020ed89d88f5549a8 done
2023-09-29 06:34:54.889Z: #9 extracting sha256:f8d6210daf4fac88cb197f1dff914daddaa44d0f2aec9fd44785c214b280b5ed done
2023-09-29 06:34:55.040Z: #9 extracting sha256:86790f32e15e3c9d8a1b871b7de0f179c890eaecde663cc0d59064820f7e8ef3 done
2023-09-29 06:34:55.190Z: #9 extracting sha256:f1dd26225a3c198c137d5e9a9329e451bb8d069e5eafc424fd07ab2cf188435b done
2023-09-29 06:34:55.295Z: #9 extracting sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9
2023-09-29 06:34:58.382Z: #9 extracting sha256:d0d1110ee7a72f6535e4869d06cb129e60e4e57104e64d848283585d43406de9 3.0s done
2023-09-29 06:34:59.734Z: #9 extracting sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa4752312023-09-29 06:34:59.741Z: 
2023-09-29 06:35:03.360Z: #9 extracting sha256:18f3ce8565d760cca0cefe2977119945c9f161049e2303260a6cafc9aa475231 3.7s done2023-09-29 06:35:03.365Z: 
2023-09-29 06:35:06.033Z: #9 DONE 16.8s
2023-09-29 06:35:06.183Z: 
#10 [dev_containers_target_stage  2/10] RUN mkdir -p /tmp/dev-container-features
2023-09-29 06:35:06.294Z: #10 ...2023-09-29 06:35:06.297Z: 

#11 [dev_containers_feature_content_normalize 2/3] COPY --from=dev_containers_feature_content_source devcontainer-features.builtin.env /tmp/build-features/
#11 DONE 0.2s
2023-09-29 06:35:06.444Z: 
#12 [dev_containers_feature_content_normalize 3/3] RUN chmod -R 0755 /tmp/build-features/
2023-09-29 06:35:06.718Z: #12 ...

#10 [dev_containers_target_stage  2/10] RUN mkdir -p /tmp/dev-container-features
#10 DONE 0.7s
2023-09-29 06:35:06.869Z: 
#12 [dev_containers_feature_content_normalize 3/3] RUN chmod -R 0755 /tmp/build-features/
2023-09-29 06:35:07.170Z: #12 DONE 0.7s

#13 [dev_containers_target_stage  3/10] COPY --from=dev_containers_feature_content_normalize /tmp/build-features/ /tmp/dev-container-features
2023-09-29 06:35:07.471Z: #13 DONE 0.3s

#14 [dev_containers_target_stage  4/10] RUN echo "_CONTAINER_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'root' || grep -E '^root|^[^:]*:[^:]*:root:' /etc/passwd || ********) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env && echo "_REMOTE_USER_HOME=$( (command -v getent >/dev/null 2>&1 && getent passwd 'vscode' || grep -E '^vscode|^[^:]*:[^:]*:vscode:' /etc/passwd || ********) | cut -d: -f6)" >> /tmp/dev-container-features/devcontainer-features.builtin.env
2023-09-29 06:35:07.904Z: #14 DONE 0.6s
2023-09-29 06:35:08.055Z: 
#15 [dev_containers_target_stage  5/10] RUN --mount=type=bind,from=dev_containers_feature_content_source,source=prettier_0,target=/tmp/build-features-src/prettier_0     cp -ar /tmp/build-features-src/prettier_0 /tmp/dev-container-features  && chmod -R 0755 /tmp/dev-container-features/prettier_0  && cd /tmp/dev-container-features/prettier_0  && chmod +x ./devcontainer-features-install.sh  && ./devcontainer-features-install.sh  && rm -rf /tmp/dev-container-features/prettier_0
2023-09-29 06:35:08.505Z: #15 0.470 ===========================================================================
#15 0.470 Feature       : Prettier (via npm)
#15 0.470 Description   : Prettier is an opinionated code formatter.
#15 0.470 Id            : ghcr.io/devcontainers-contrib/features/prettier2023-09-29 06:35:08.508Z: 
#15 0.470 Version       : 1.0.0
#15 0.470 Documentation : http://github.com/devcontainers-contrib/features/tree/main/src/prettier
#15 0.470 Options       :
#15 0.470     VERSION="latest"
#15 0.470 ===========================================================================
#15 0.472 bash: cannot set terminal process group (1): Inappropriate ioctl for device
#15 0.472 bash: no job control in this shell
2023-09-29 06:35:11.061Z: #15 3.018 nanolayer2023-09-29 06:35:11.064Z: 
2023-09-29 06:35:15.418Z: #15 7.368 cd /tmp/tmp4bdq3xbd && chmod +x -R . && _REMOTE_USER="vscode" _REMOTE_USER_HOME="/home/vscode" PACKAGE="prettier" VERSION="latest" NANOLAYER_VERBOSE="" NANOLAYER_FORCE_CLI_INSTALLATION="" NANOLAYER_PROPAGATE_CLI_LOCATION="1" NANOLAYER_CLI_LOCATION="/tmp/nanolayer-jYZRECyR7T/nanolayer" bash  -i  +H ./install.sh
#15 7.368 Installing node and npm...

2023-09-29 06:35:15.871Z: #15 7.805 
0% [Working]
            
Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
2023-09-29 06:35:15.876Z: 
2023-09-29 06:35:15.883Z: #15 7.817 
0% [1 InRelease 0 B/151 kB 0%] [Connected to dl.yarnpkg.com (104.16.171.99)]
                                                                            
0% [Waiting for headers] [Connected to dl.yarnpkg.com (104.16.171.99)]
                                                                      
Get:2 http://deb.debian.org/debian bookworm-updates InRelease [52.1 kB]
2023-09-29 06:35:15.886Z: 
2023-09-29 06:35:15.893Z: #15 7.828 
                                                                      
Get:3 http://deb.debian.org/debian-security bookworm-security InRelease [48.0 kB]
2023-09-29 06:35:15.904Z: 
2023-09-29 06:35:15.913Z: #15 7.829 
                                                                      
0% [Connected to dl.yarnpkg.com (104.16.171.99)]
                                                
Get:4 https://dl.yarnpkg.com/debian stable InRelease [17.1 kB]
2023-09-29 06:35:15.924Z: 
2023-09-29 06:35:15.928Z: #15 7.855 
                                                
0% [4 InRelease 17.1 kB/17.1 kB 100%]
                                     
0% [Working]
0% [Working]
            
Get:5 http://deb.debian.org/debian bookworm/main amd64 Packages [8906 kB]
2023-09-29 06:35:15.933Z: 
2023-09-29 06:35:15.938Z: #15 7.892 
0% [5 Packages 0 B/8906 kB 0%]2023-09-29 06:35:16.014Z: 
                              
0% [Working]
0% [5 Packages store 0 B]
0% [5 Packages store 0 B]
                         
Get:6 http://deb.debian.org/debian bookworm-updates/main amd64 Packages [6408 B]
2023-09-29 06:35:16.019Z: 
2023-09-29 06:35:16.022Z: #15 8.013 
0% [5 Packages store 0 B] [6 Packages 6408 B/6408 B 100%]
                                                         
0% [5 Packages store 0 B]
0% [5 Packages store 0 B]2023-09-29 06:35:16.166Z: 
                         
Get:7 http://deb.debian.org/debian-security bookworm-security/main amd64 Packages [63.3 kB]

#15 8.099 
0% [5 Packages store 0 B]
91% [5 Packages store 0 B]
                          
Get:8 https://dl.yarnpkg.com/debian stable/main all Packages [10.9 kB]
2023-09-29 06:35:16.169Z: 
2023-09-29 06:35:16.180Z: #15 8.172 
92% [5 Packages store 0 B]
                          
Get:9 https://dl.yarnpkg.com/debian stable/main amd64 Packages [10.9 kB]
2023-09-29 06:35:16.186Z: 
2023-09-29 06:35:16.192Z: #15 8.182 
92% [5 Packages store 0 B] [9 Packages 10.9 kB/10.9 kB 100%]
                                                            
92% [5 Packages store 0 B]2023-09-29 06:35:16.601Z: 
92% [5 Packages store 0 B]2023-09-29 06:35:16.735Z: 
                          
93% [Working]2023-09-29 06:35:16.886Z: 
95% [Working]
95% [7 Packages store 0 B]
                          
97% [Working]
97% [8 Packages store 0 B]
                          
98% [Working]
98% [9 Packages store 0 B]
                          
100% [Working]
              
Fetched 9266 kB in 1s (8993 kB/s)
2023-09-29 06:35:16.893Z: 
#15 8.835 
Reading package lists... 0%

Reading package lists... 0%

Reading package lists... 0%
2023-09-29 06:35:17.146Z: 
Reading package lists... 98%
2023-09-29 06:35:17.297Z: 
Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... Done


#15 9.253 
Reading package lists... 0%

Reading package lists... 0%

Reading package lists... 0%
2023-09-29 06:35:17.561Z: 
Reading package lists... 98%
2023-09-29 06:35:17.707Z: 
Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... Done

2023-09-29 06:35:17.720Z: 
2023-09-29 06:35:17.724Z: #15 9.667 
Building dependency tree... 0%

Building dependency tree... 0%

Building dependency tree... 50%

Building dependency tree... 50%

Building dependency tree... Done
2023-09-29 06:35:17.811Z: 

#15 9.789 
Reading state information... 0% 

Reading state information... 0%

Reading state information... Done


#15 9.893 Recommended packages:

#15 9.893   nodejs

2023-09-29 06:35:17.962Z: #15 9.908 The following NEW packages will be installed:
2023-09-29 06:35:17.965Z: 
#15 9.908   yarn

#15 9.912 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.

#15 9.913 Need to get 893 kB of archives.

#15 9.913 After this operation, 5415 kB of additional disk space will be used.

#15 9.917 
0% [Working]
            
Get:1 https://dl.yarnpkg.com/debian stable/main amd64 yarn all 1.22.19-1 [893 kB]

#15 9.960 
5% [1 yarn 59.6 kB/893 kB 7%]
                             
100% [Working]
              
Fetched 893 kB in 0s (15.6 MB/s)

2023-09-29 06:35:18.666Z: #15 10.75 Selecting previously unselected package yarn.

2023-09-29 06:35:18.673Z: 
#15 10.75 (Reading database ... 
2023-09-29 06:35:18.817Z: (Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21780 files and directories currently installed.)


#15 10.77 Preparing to unpack .../yarn_1.22.19-1_all.deb ...


#15 10.79 Unpacking yarn (1.22.19-1) ...


2023-09-29 06:35:18.945Z: #15 11.03 Setting up yarn (1.22.19-1) ...


2023-09-29 06:35:19.847Z: #15 11.78 NVM_VERSION=0.39.5

2023-09-29 06:35:20.147Z: #15 12.08 => Downloading nvm from git to '/usr/local/share/nvm'

#15 12.08 > Cloning into '/usr/local/share/nvm'...

2023-09-29 06:35:21.049Z: #15 13.03 remote: Enumerating objects: 360, done.        

#15 13.03 remote: Counting objects:   0% (1/360)        
remote: Counting objects:   1% (4/360)        
remote: Counting objects:   2% (8/360)        
remote: Counting objects:   3% (11/360)        
remote: Counting objects:   4% (15/360)        
remote: Counting objects:   5% (18/360)        
remote: Counting objects:   6% (22/360)        
remote: Counting objects:   7% (26/360)        
remote: Counting objects:   8% (29/360)        
remote: Counting objects:   9% (33/360)        
remote: Counting objects:  10% (36/360)        
remote: Counting objects:  11% (40/360)        
remote: Counting objects:  12% (44/360)        
remote: Counting objects:  13% (47/360)        
remote: Counting objects:  14% (51/360)        
remote: Counting objects:  15% (54/360)        
remote: Counting objects:  16% (58/360)        
remote: Counting objects:  17% (62/360)        
remote: Counting objects:  18% (65/360)        
remote: Counting objects:  19% (69/360)        
remote: Counting objects:  20% (72/360)        
remote: Counting objects:  21% (76/360)        
remote: Counting objects:  22% (80/360)        
remote: Counting objects:  23% (83/360)        
remote: Counting objects:  24% (87/360)        
remote: Counting objects:  25% (90/360)        
remote: Counting objects:  26% (94/360)        
remote: Counting objects:  27% (98/360)        
remote: Counting objects:  28% (101/360)        
remote: Counting objects:  29% (105/360)        
remote: Counting objects:  30% (108/360)        
remote: Counting objects:  31% (112/360)        
remote: Counting objects:  32% (116/360)        
remote: Counting objects:  33% (119/360)        
remote: Counting objects:  34% (123/360)        
remote: Counting objects:  35% (126/360)        
remote: Counting objects:  36% (130/360)        
remote: Counting objects:  37% (134/360)        
remote: Counting objects:  38% (137/360)        
remote: Counting objects:  39% (141/360)        
remote: Counting objects:  40% (144/360)        
remote: Counting objects:  41% (148/360)        
remote: Counting objects:  42% (152/360)        
remote: Counting objects:  43% (155/360)        
remote: Counting objects:  44% (159/360)        
remote: Counting objects:  45% (162/360)        
remote: Counting objects:  46% (166/360)        
remote: Counting objects:  47% (170/360)        
remote: Counting objects:  48% (173/360)        
remote: Counting objects:  49% (177/360)        
remote: Counting objects:  50% (180/360)        
remote: Counting objects:  51% (184/360)        
remote: Counting objects:  52% (188/360)        
remote: Counting objects:  53% (191/360)        
remote: Counting objects:  54% (195/360)        
remote: Counting objects:  55% (198/360)        
remote: Counting objects:  56% (202/360)        
remote: Counting objects:  57% (206/360)        
remote: Counting objects:  58% (209/360)        
remote: Counting objects:  59% (213/360)        
remote: Counting objects:  60% (216/360)        
remote: Counting objects:  61% (220/360)        
remote: Counting objects:  62% (224/360)        
remote: Counting objects:  63% (227/360)        
remote: Counting objects:  64% (231/360)        
remote: Counting objects:  65% (234/360)        
remote: Counting objects:  66% (238/360)        
remote: Counting objects:  67% (242/360)        
remote: Counting objects:  68% (245/360)        
remote: Counting objects:  69% (249/360)        
remote: Counting objects:  70% (252/360)        
remote: Counting objects:  71% (256/360)        
remote: Counting objects:  72% (260/360)        
remote: Counting objects:  73% (263/360)        
remote: Counting objects:  74% (267/360)        
remote: Counting objects:  75% (270/360)        
remote: Counting objects:  76% (274/360)        
remote: Counting objects:  77% (278/360)        
remote: Counting objects:  78% (281/360)        
remote: Counting objects:  79% (285/360)        
remote: Counting objects:  80% (288/360)        
remote: Counting objects:  81% (292/360)        
remote: Counting objects:  82% (296/360)        
remote: Counting objects:  83% (299/360)        
remote: Counting objects:  84% (303/360)        
remote: Counting objects:  85% (306/360)        
remote: Counting objects:  86% (310/360)        
remote: Counting objects:  87% (314/360)        
remote: Counting objects:  88% (317/360)        
remote: Counting objects:  89% (321/360)        
remote: Counting objects:  90% (324/360)        
remote: Counting objects:  91% (328/360)        
remote: Counting objects:  92% (332/360)        
remote: Counting objects:  93% (335/360)        
remote: Counting objects:  94% (339/360)        
remote: Counting objects:  95% (342/360)        
remote: Counting objects:  96% (346/360)        
remote: Counting objects:  97% (350/360)        
remote: Counting objects:  98% (353/360)        
remote: Counting objects:  99% (357/360)        
remote: Counting objects: 100% (360/360)        
remote: Counting objects: 100% (360/360), done.        

#15 13.03 remote: Compressing objects:   0% (1/306)        
remote: Compressing objects:   1% (4/306)        
remote: Compressing objects:   2% (7/306)        
remote: Compressing objects:   3% (10/306)        
remote: Compressing objects:   4% (13/306)        
remote: Compressing objects:   5% (16/306)        
remote: Compressing objects:   6% (19/306)        
remote: Compressing objects:   7% (22/306)        
remote: Compressing objects:   8% (25/306)        
remote: Compressing objects:   9% (28/306)        
remote: Compressing objects:  10% (31/306)        
remote: Compressing objects:  11% (34/306)        
remote: Compressing objects:  12% (37/306)        
remote: Compressing objects:  13% (40/306)        
remote: Compressing objects:  14% (43/306)        
remote: Compressing objects:  15% (46/306)        
remote: Compressing objects:  16% (49/306)        
remote: Compressing objects:  17% (53/306)        
remote: Compressing objects:  18% (56/306)        
remote: Compressing objects:  19% (59/306)        
remote: Compressing objects:  20% (62/306)        
remote: Compressing objects:  21% (65/306)        
remote: Compressing objects:  22% (68/306)        
remote: Compressing objects:  23% (71/306)        
remote: Compressing objects:  24% (74/306)        
remote: Compressing objects:  25% (77/306)        
remote: Compressing objects:  26% (80/306)        
remote: Compressing objects:  27% (83/306)        
remote: Compressing objects:  28% (86/306)        
remote: Compressing objects:  29% (89/306)        
remote: Compressing objects:  30% (92/306)        
remote: Compressing objects:  31% (95/306)        
remote: Compressing objects:  32% (98/306)        
remote: Compressing objects:  33% (101/306)        
remote: Compressing objects:  34% (102023-09-29 06:35:21.053Z: 5/306)        
remote: Compressing objects:  35% (108/306)        
remote: Compressing objects:  36% (111/306)        
remote: Compressing objects:  37% (114/306)        
remote: Compressing objects:  38% (117/306)        
remote: Compressing objects:  39% (120/306)        
remote: Compressing objects:  40% (123/306)        
remote: Compressing objects:  41% (126/306)        
remote: Compressing objects:  42% (129/306)        
remote: Compressing objects:  43% (132/306)        
remote: Compressing objects:  44% (135/306)        
remote: Compressing objects:  45% (138/306)        
remote: Compressing objects:  46% (141/306)        
remote: Compressing objects:  47% (144/306)        
remote: Compressing objects:  48% (147/306)        
remote: Compressing objects:  49% (150/306)        
remote: Compressing objects:  50% (153/306)        
remote: Compressing objects:  51% (157/306)        
remote: Compressing objects:  52% (160/306)        
remote: Compressing objects:  53% (163/306)        
remote: Compressing objects:  54% (166/306)        
remote: Compressing objects:  55% (169/306)        
remote: Compressing objects:  56% (172/306)        
remote: Compressing objects:  57% (175/306)        
remote: Compressing objects:  58% (178/306)        
remote: Compressing objects:  59% (181/306)        
remote: Compressing objects:  60% (184/306)        
remote: Compressing objects:  61% (187/306)        
remote: Compressing objects:  62% (190/306)        
remote: Compressing objects:  63% (193/306)        
remote: Compressing objects:  64% (196/306)        
remote: Compressing objects:  65% (199/306)        
remote: Compressing objects:  66% (202/306)        
remote: Compressing objects:  67% (206/306)        
remote: Compressing objects:  68% (209/306)        
remote: Compressing objects:  69% (212/306)        
remote: Compressing objects:  70% (215/306)        
remote: Compressing objects:  71% (218/306)        
remote: Compressing objects:  72% (221/306)        
remote: Compressing objects:  73% (224/306)        
remote: Compressing objects:  74% (227/306)        
remote: Compressing objects:  75% (230/306)        
remote: Compressing objects:  76% (233/306)        
remote: Compressing objects:  77% (236/306)        
remote: Compressing objects:  78% (239/306)        
remote: Compressing objects:  79% (242/306)        
remote: Compressing objects:  80% (245/306)        
remote: Compressing objects:  81% (248/306)        
remote: Compressing objects:  82% (251/306)        
remote: Compressing objects:  83% (254/306)        
remote: Compressing objects:  84% (258/306)        
remote: Compressing objects:  85% (261/306)        
remote: Compressing objects:  86% (264/306)        
remote: Compressing objects:  87% (267/306)        
remote: Compressing objects:  88% (270/306)        
remote: Compressing objects:  89% (273/306)        
remote: Compressing objects:  90% (276/306)        
remote: Compressing objects:  91% (279/306)        
remote: Compressing objects:  92% (282/306)        
remote: Compressing objects:  93% (285/306)        
remote: Compressing objects:  94% (288/306)        
remote: Compressing objects:  95% (291/306)        
remote: Compressing objects:  96% (294/306)        
remote: Compressing objects:  97% (297/306)        
remote: Compressing objects:  98% (300/306)        
remote: Compressing objects:  99% (303/306)        
remote: Compressing objects: 100% (306/306)        
remote: Compressing objects: 100% (306/306), done.        

#15 13.03 Receiving objects:   0% (1/360)
Receiving objects:   1% (4/360)
Receiving objects:   2% (8/360)
Receiving objects:   3% (11/360)
Receiving objects:   4% (15/360)
Receiving objects:   5% (18/360)
Receiving objects:   6% (22/360)
Receiving objects:   7% (26/360)
Receiving objects:   8% (29/360)
Receiving objects:   9% (33/360)
Receiving objects:  10% (36/360)
Receiving objects:  11% (40/360)
Receiving objects:  12% (44/360)
Receiving objects:  13% (47/360)
Receiving objects:  14% (51/360)
Receiving objects:  15% (54/360)
Receiving objects:  16% (58/360)
Receiving objects: 2023-09-29 06:35:21.057Z:  17% (62/360)
Receiving objects:  18% (65/360)
Receiving objects:  19% (69/360)
Receiving objects:  20% (72/360)
Receiving objects:  21% (76/360)
Receiving objects:  22% (80/360)
Receiving objects:  23% (83/360)
Receiving objects:  24% (87/360)
Receiving objects:  25% (90/360)
Receiving objects:  26% (94/360)
Receiving objects:  27% (98/360)
Receiving objects:  28% (101/360)
Receiving objects:  29% (105/360)
Receiving objects:  30% (108/360)
Receiving objects:  31% (112/360)
Receiving objects:  32% (116/360)
Receiving objects:  33% (119/360)
Receiving objects:  34% (123/360)
2023-09-29 06:35:21.189Z: Receiving objects:  35% (126/360)
2023-09-29 06:35:21.338Z: Receiving objects:  36% (130/360)
Receiving objects:  37% (134/360)
Receiving objects:  38% (137/360)
Receiving objects:  39% (141/360)
Receiving objects:  40% (144/360)
Receiving objects:  41% (148/360)
Receiving objects:  42% (152/360)
Receiving objects:  43% (155/360)
Receiving objects:  44% (159/360)
remote: Total 360 (delta 41), reused 161 (delta 28), pack-reused 0        

#15 13.27 Receiving objects:  45% (162/360)
Receiving objects:  46% (166/360)
Receiving objects:  47% (170/360)
Receiving objects:  48% (173/360)
Receiving objects:  49% (177/360)
Receiving objects:  50% (180/360)
Receiving objects:  51% (184/360)
Receiving objects:  52% (188/360)
Receiving objects:  53% (191/360)
Receiving objects:  54% (195/360)
Receiving objects:  55% (198/360)
Receiving objects:  56% (202/360)
Receiving objects:  57% (206/360)
Receiving objects:  58% (209/360)
Receiving objects:  59% (213/360)
Receiving objects:  60% (216/360)
Receiving objects:  61% (220/360)
Receiving objects:  62% (224/360)
Receiving objects:  63% (227/360)
Receiving objects:  64% (231/360)
Receiving objects:  65% (234/360)
Receiving objects:  66% (238/360)
Receiving objects:  67% (242/360)
Receiving objects:  68% (245/360)
Receiving objects:  69% (249/360)
Receiving objects:  70% (252/360)
Receiving objects:  71% (256/360)
Receiving objects:  72% (260/360)
Receiving objects:  73% (263/360)
Receiving objects:  74% (267/360)
Receiving objects:  75% (270/360)
Receiving objects:  76% (274/360)
Receiving objects:  77% (278/360)
Receiving objects:  78% (281/360)
Receiving objects:  79% (285/360)
Receiving objects:  80% (288/360)
Receiving objects:  81% (292/360)
Receiving objects:  82% (296/360)
Receiving objects:  83% (299/360)
Receiving objects:  84% (303/360)
Receiving objects:  85% (306/360)
Receiving objects:  86% (310/360)
Receiving objects:  87% (314/360)
Receiving objects:  88% (317/360)
Receiving objects:  89% (321/360)
Receiving objects:  90% (324/360)
Receiving objects:  91% (328/360)
Receiving objects:  92% (332/360)
Receiving objects:  93% (335/360)
Receiving objects:  94% (339/360)
Receiving objects:  95% (342/360)
Receiving objects:  96% (346/360)
Receiving objects:  97% (350/360)
Receiving objects:  98% (353/360)
Receiving objects:  99% (357/360)
Receiving objects: 100% (360/360)
Receiving objects: 100% (360/360), 220.24 KiB | 916.00 KiB/s, done.

2023-09-29 06:35:21.341Z: #15 13.27 Resolving deltas:   0% (0/41)
Resolving deltas:   2% (1/41)
Resolving deltas:   4% (2/41)
Resolving deltas:   7% (3/41)
Resolving deltas:   9% (4/41)
Resolving deltas:  12% (5/41)
Resolving deltas:  14% (6/41)
Resolving deltas:  17% (7/41)
Resolving deltas:  19% (8/41)
Resolving deltas:  21% (9/41)
Resolving deltas:  24% (10/41)
Resolving deltas:  26% (11/41)
Resolving deltas:  29% (12/41)
Resolving deltas:  31% (13/41)
Resolving deltas:  34% (14/41)
Resolving deltas:  36% (15/41)
Resolving deltas:  39% (16/41)
Resolving deltas:  41% (17/41)
Resolving deltas:  43% (18/41)
Resolving deltas:  46% (19/41)
Resolving deltas:  48% (20/41)
Resolving deltas:  51% (21/41)
Resolving deltas:  53% (22/41)
Resolving deltas:  56% (23/41)
Resolving deltas:  58% (24/41)
Resolving deltas:  60% (25/41)
Resolving deltas:  63% (26/41)
Resolving deltas:  65% (27/41)
Resolving deltas:  68% (28/41)
Resolving deltas:  70% (29/41)
Resolving deltas:  73% (30/41)
Resolving deltas:  75% (31/41)
Resolving deltas:  78% (32/41)
Resolving deltas:  80% (33/41)
Resolving deltas:  82% (34/41)
Resolving deltas:  85% (35/41)
Resolving deltas:  87% (36/41)
Resolving deltas:  90% (37/41)
Resolving deltas:  92% (38/41)
Resolving deltas:  95% (39/41)
Resolving deltas:  97% (40/41)
Resolving deltas: 100% (41/41)
Resolving deltas: 100% (41/41), done.

2023-09-29 06:35:22.494Z: #15 14.55 * (HEAD detached at FETCH_HEAD)
2023-09-29 06:35:22.501Z: 
#15 14.55   master

#15 14.56 => Compressing and cleaning up git repository

#15 14.56 

2023-09-29 06:35:22.507Z: #15 14.56 => Profile not found. Tried  (as defined in $PROFILE), ~/.bashrc, ~/.bash_profile, ~/.zprofile, ~/.zshrc, and ~/.profile.

#15 14.56 => Create one of them and run this script again

#15 14.56    OR

#15 14.56 => Append the following lines to the correct file yourself:

#15 14.56 

#15 14.56 export NVM_DIR="/usr/local/share/nvm"

#15 14.56 [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm

#15 14.56 

#15 14.58 => Installing Node.js version lts/*

2023-09-29 06:35:22.902Z: #15 14.98 Downloading and installing node v18.18.0...
2023-09-29 06:35:22.904Z: 
2023-09-29 06:35:23.353Z: #15 15.32 Downloading https://nodejs.org/dist/v18.18.0/node-v18.18.0-linux-x64.tar.xz...
2023-09-29 06:35:23.356Z: 
2023-09-29 06:35:23.503Z: #15 15.44 #=#=#                                                                         
2023-09-29 06:35:23.653Z: ##O#-#                                                                        
2023-09-29 06:35:23.805Z: 
                                                                           0.3%2023-09-29 06:35:23.906Z: 
############################                                              39.8%
######################################################################## 100.0%

#15 15.99 Computing checksum with sha256sum

2023-09-29 06:35:24.056Z: #15 16.09 Checksums matched!

2023-09-29 06:35:25.987Z: #15 18.07 Now using node v18.18.0 (npm v9.8.1)

2023-09-29 06:35:26.125Z: #15 18.16 Creating default alias: default -> lts/* (-> v18.18.0 *)

#15 18.21 => Node.js version lts/* has been successfully installed

2023-09-29 06:35:26.277Z: #15 18.21 => Close and reopen your terminal to start using nvm or run the following to use it now:

#15 18.21 

#15 18.21 export NVM_DIR="/usr/local/share/nvm"

#15 18.21 [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"  # This loads nvm

2023-09-29 06:35:26.577Z: #15 18.53 default -> lts/* (-> v18.18.0 *)

#15 18.53 Updating /etc/bash.bashrc and /etc/zsh/zshrc...

2023-09-29 06:35:26.870Z: #15 18.86 Skip installing pnpm because npm is missing

#15 18.86 Verifying node-gyp OS requirements...

#15 18.89 
Reading package lists... 0%

Reading package lists... 0%
2023-09-29 06:35:27.020Z: 
Reading package lists... 0%
2023-09-29 06:35:27.276Z: 
Reading package lists... 98%
2023-09-29 06:35:27.417Z: 
Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 98%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... 99%

Reading package lists... Done


#15 19.38 
Building dependency tree... 0%

Building dependency tree... 0%

Building dependency tree... 50%

Building dependency tree... 50%

Building dependency tree... Done


#15 19.50 
Reading state information... 0% 
2023-09-29 06:35:27.518Z: 
Reading state information... 0%

Reading state information... Done

2023-09-29 06:35:27.525Z: 
#15 19.60 The following additional packages will be installed:

#15 19.60   libpython3.11-minimal libpython3.11-stdlib media-types python3.11

#15 19.60   python3.11-minimal

#15 19.60 Suggested packages:

#15 19.60   python3.11-venv python3.11-doc binfmt-support

2023-09-29 06:35:27.668Z: #15 19.66 The following NEW packages will be installed:

#15 19.66   libpython3.11-minimal libpython3.11-stdlib media-types python3-minimal

#15 19.66   python3.11 python3.11-minimal

#15 19.66 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded.

#15 19.66 Need to get 5298 kB of archives.

#15 19.66 After this operation, 21.6 MB of additional disk space will be used.
2023-09-29 06:35:27.671Z: 
#15 19.67 
0% [Working]2023-09-29 06:35:27.818Z: 
            
Get:1 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-minimal amd64 3.11.2-6 [813 kB]

#15 19.76 
0% [1 libpython3.11-minimal 0 B/813 kB 0%]2023-09-29 06:35:27.970Z: 
                                          
16% [Working]
             
Get:2 http://deb.debian.org/debian bookworm/main amd64 python3.11-minimal amd64 3.11.2-6 [2064 kB]

#15 19.93 
16% [2 python3.11-minimal 0 B/2064 kB 0%]
                                         
50% [Working]
             
Get:3 http://deb.debian.org/debian bookworm/main amd64 python3-minimal amd64 3.11.2-1+b1 [26.3 kB]

#15 19.94 
50% [3 python3-minimal 0 B/26.3 kB 0%]
                                      
54% [Working]
             
Get:4 http://deb.debian.org/debian bookworm/main amd64 media-types all 10.0.0 [26.1 kB]

#15 19.94 
54% [4 media-types 4096 B/26.1 kB 16%]
                                      
58% [Waiting for headers]
                         
Get:5 http://deb.debian.org/debian bookworm/main amd64 libpython3.11-stdlib amd64 3.11.2-6 [1796 kB]

#15 19.94 
58% [5 libpython3.11-stdlib 16.1 kB/1796 kB 1%]
                                               
88% [Working]
             
Get:6 http://deb.debian.org/debian bookworm/main amd64 python3.11 amd64 3.11.2-6 [572 kB]

#15 19.95 
88% [6 python3.11 0 B/572 kB 0%]
                                
100% [Working]
              
Fetched 5298 kB in 0s (18.1 MB/s)

2023-09-29 06:35:28.525Z: #15 20.57 Selecting previously unselected package libpython3.11-minimal:amd64.


#15 20.57 (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 21799 files and directories currently installed.)


#15 20.58 Preparing to unpack .../libpython3.11-minimal_3.11.2-6_amd64.deb ...


#15 20.61 Unpacking libpython3.11-minimal:amd64 (3.11.2-6) ...
2023-09-29 06:35:28.675Z: 

2023-09-29 06:35:28.778Z: #15 20.86 Selecting previously unselected package python3.11-minimal.
2023-09-29 06:35:28.929Z: 

2023-09-29 06:35:28.935Z: #15 20.87 Preparing to unpack .../python3.11-minimal_3.11.2-6_amd64.deb ...


#15 20.89 Unpacking python3.11-minimal (3.11.2-6) ...


2023-09-29 06:35:29.207Z: #15 21.19 Setting up libpython3.11-minimal:amd64 (3.11.2-6) ...

2023-09-29 06:35:29.210Z: 
#15 21.29 Setting up python3.11-minimal (3.11.2-6) ...


2023-09-29 06:35:30.067Z: #15 22.11 Selecting previously unselected package python3-minimal.


2023-09-29 06:35:30.072Z: #15 22.11 (Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 22106 files and directories currently installed.)


#15 22.12 Preparing to unpack .../python3-minimal_3.11.2-1+b1_amd64.deb ...


#15 22.15 Unpacking python3-minimal (3.11.2-1+b1) ...


2023-09-29 06:35:30.368Z: #15 22.31 Selecting previously unselected package media-types.


#15 22.31 Preparing to unpack .../media-types_10.0.0_all.deb ...


#15 22.34 Unpacking media-types (10.0.0) ...


2023-09-29 06:35:30.519Z: #15 22.49 Selecting previously unselected package libpython3.11-stdlib:amd64.


#15 22.49 Preparing to unpack .../libpython3.11-stdlib_3.11.2-6_amd64.deb ...


#15 22.52 Unpacking libpython3.11-stdlib:amd64 (3.11.2-6) ...


2023-09-29 06:35:30.819Z: #15 22.81 Selecting previously unselected package python3.11.


#15 22.81 Preparing to unpack .../python3.11_3.11.2-6_amd64.deb ...


#15 22.84 Unpacking python3.11 (3.11.2-6) ...


2023-09-29 06:35:30.971Z: #15 22.99 Setting up media-types (10.0.0) ...


2023-09-29 06:35:31.087Z: #15 23.09 Setting up libpython3.11-stdlib:amd64 (3.11.2-6) ...


#15 23.17 Setting up python3-minimal (3.11.2-1+b1) ...


2023-09-29 06:35:31.389Z: #15 23.35 Setting up python3.11 (3.11.2-6) ...

2023-09-29 06:35:31.396Z: 
2023-09-29 06:35:31.990Z: #15 23.98 Processing triggers for man-db (2.11.2-2) ...


2023-09-29 06:35:33.192Z: #15 25.17 nvm cache cleared.
2023-09-29 06:35:33.198Z: 
#15 25.22 Done!

2023-09-29 06:35:34.520Z: #15 26.49 �- idealTree: timing idealTree Completed in 106ms�[K
2023-09-29 06:35:34.629Z: [#########.........] \ reify:prettier: timing reify:loadBundles Completed in 0m�[K
[#########.........] \ reify:prettier: timing reify:loadBundles Completed in 0m�[K
2023-09-29 06:35:34.737Z: [#########.........] \ reify:prettier: timing reify:loadBundles Completed in 0m�[K
[#########.........] \ reify:prettier: timing reify:loadBundles Completed in 0m�[K
2023-09-29 06:35:34.887Z: 
�[K�[?25h

#15 26.84 added 1 package in 602ms
2023-09-29 06:35:34.890Z: 
#15 26.84 

#15 26.84 1 package is looking for funding

#15 26.84   run `npm fund` for details

#15 26.85 npm notice 

#15 26.85 npm notice New major version of npm available! 9.8.1 -> 10.1.0

#15 26.85 npm notice Changelog: ********/npm/cli/releases/tag/v10.1.0

#15 26.85 npm notice Run npm install -g [email protected] to update!

#15 26.85 npm notice 

#15 26.85 Done!
2023-09-29 06:35:35.140Z: #15 DONE 27.2s

#16 [dev_containers_target_stage  6/10] RUN --mount=type=bind,from=dev_containers_feature_content_source,source=common-utils_1,target=/tmp/build-features-src/common-utils_1     cp -ar /tmp/build-features-src/common-utils_1 /tmp/dev-container-features  && chmod -R 0755 /tmp/dev-container-features/common-utils_1  && cd /tmp/dev-container-features/common-utils_1  && chmod +x ./devcontainer-features-install.sh  && ./devcontainer-features-install.sh  && rm -rf /tmp/dev-container-features/common-utils_1
2023-09-29 06:35:35.730Z: #16 0.488 ===========================================================================
#16 0.488 Feature       : Common Utilities
#16 0.488 Description   : Installs a set of common command line utilities, Oh My Zsh!, and sets up a non-root user.
#16 0.488 Id            : ghcr.io/devcontainers/features/common-utils
#16 0.488 Version       : 2.2.0
#16 0.488 Documentation : ********/devcontainers/features/tree/main/src/common-utils
#16 0.488 Options       :
#16 0.488     INSTALLZSH="********"
#16 0.488     CONFIGUREZSHASDEFAULTSHELL="false"
#16 0.488     INSTALLOHMYZSH="********"
#16 0.488     INSTALLOHMYZSHCONFIG="********"
#16 0.488     UPGRADEPACKAGES="********"
#16 0.488     USERNAME="automatic"
#16 0.488     USERUID="automatic"
#16 0.488     USERGID="automatic"
#16 0.488     NONFREEPACKAGES="********"
#16 0.488 ===========================================================================
#16 0.496 Marker file found:
#16 0.497     PACKAGES_ALREADY_INSTALLED=********
#16 0.497     LOCALE_ALREADY_SET=********
#16 0.497     EXISTING_NON_ROOT_USER=vscode
#16 0.497     RC_SNIPPET_ALREADY_ADDED=********
#16 0.497     ZSH_ALREADY_INSTALLED=********
#16 0.501 sed: can't read /etc/apt/sources.list: No such file or directory
#16 0.501 ERROR: Feature "Common Utilities" (ghcr.io/devcontainers/features/common-utils) failed to install! Look at the documentation at ********/devcontainers/features/tree/main/src/common-utils for help troubleshooting this error.
#16 ERROR: process "/bin/sh -c cp -ar /tmp/build-features-src/common-utils_1 /tmp/dev-container-features  && chmod -R 0755 /tmp/dev-container-features/common-utils_1  && cd /tmp/dev-container-features/common-utils_1  && chmod +x ./devcontainer-features-install.sh  && ./devcontainer-features-install.sh  && rm -rf /tmp/dev-container-features/common-utils_1" did not complete successfully: exit code: 2
2023-09-29 06:35:35.737Z: ------
2023-09-29 06:35:35.761Z:  > [dev_containers_target_stage  6/10] RUN --mount=type=bind,from=dev_containers_feature_content_source,source=common-utils_1,target=/tmp/build-features-src/common-utils_1     cp -ar /tmp/build-features-src/common-utils_1 /tmp/dev-container-features  && chmod -R 0755 /tmp/dev-container-features/common-utils_1  && cd /tmp/dev-container-features/common-utils_1  && chmod +x ./devcontainer-features-install.sh  && ./devcontainer-features-install.sh  && rm -rf /tmp/dev-container-features/common-utils_1:
0.488     NONFREEPACKAGES="********"
0.488 ===========================================================================
0.496 Marker file found:
0.497     PACKAGES_ALREADY_INSTALLED=********
0.497     LOCALE_ALREADY_SET=********
0.497     EXISTING_NON_ROOT_USER=vscode
0.497     RC_SNIPPET_ALREADY_ADDED=********
0.497     ZSH_ALREADY_INSTALLED=********
0.501 sed: can't read /etc/apt/sources.list: No such file or directory
0.501 ERROR: Feature "Common Utilities" (ghcr.io/devcontainers/features/common-utils) failed to install! Look at the documentation at ********/devcontainers/features/tree/main/src/common-utils for help troubleshooting this error.
2023-09-29 06:35:35.770Z: ------
2023-09-29 06:35:35.774Z: Dockerfile.extended:33
--------------------
  32 |     
  33 | >>> RUN --mount=type=bind,from=dev_containers_feature_content_source,source=common-utils_1,target=/tmp/build-features-src/common-utils_1 \
2023-09-29 06:35:35.781Z:   34 | >>>     cp -ar /tmp/build-features-src/common-utils_1 /tmp/dev-container-features \
  35 | >>>  && chmod -R 0755 /tmp/dev-container-features/common-utils_1 \
  36 | >>>  && cd /tmp/dev-container-features/common-utils_1 \
  37 | >>>  && chmod +x ./devcontainer-features-install.sh \
  38 | >>>  && ./devcontainer-features-install.sh \
  39 | >>>  && rm -rf /tmp/dev-container-features/common-utils_1
2023-09-29 06:35:35.786Z:   40 |     
--------------------
ERROR: failed to solve: process "/bin/sh -c cp -ar /tmp/build-features-src/common-utils_1 /tmp/dev-container-features  && chmod -R 0755 /tmp/dev-container-features/common-utils_1  && cd /tmp/dev-container-features/common-utils_1  && chmod +x ./devcontainer-features-install.sh  && ./devcontainer-features-install.sh  && rm -rf /tmp/dev-container-features/common-utils_1" did not complete successfully: exit code: 2
2023-09-29 06:35:35.792Z: Stop: Run: docker buildx build --load --build-context dev_containers_feature_content_source=/tmp/devcontainercli-root/container-features/0.51.3-1695969273547 --build-arg _DEV_CONTAINERS_BASE_IMAGE=mcr.microsoft.com/devcontainers/base:debian --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp --target dev_containers_target_stage -t vsc-visionsense-next-e62775ff136c615683c0043f03787e0fe0fe790f047fbe439719e7538d83f2b8-features -f /tmp/devcontainercli-root/container-features/0.51.3-1695969273547/Dockerfile.extended /var/lib/docker/codespacemount/.persistedshare/empty-folder
2023-09-29 06:35:35.804Z: Error: Command failed: docker buildx build --load --build-context dev_containers_feature_content_source=/tmp/devcontainercli-root/container-features/0.51.3-1695969273547 --build-arg _DEV_CONTAINERS_BASE_IMAGE=mcr.microsoft.com/devcontainers/base:debian --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp --target dev_containers_target_stage -t vsc-visionsense-next-e62775ff136c615683c0043f03787e0fe0fe790f047fbe439719e7538d83f2b8-features -f /tmp/devcontainercli-root/container-features/0.51.3-1695969273547/Dockerfile.extended /var/lib/docker/codespacemount/.persistedshare/empty-folder
2023-09-29 06:35:35.811Z:     at IAA (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:462:1066)
2023-09-29 06:35:35.822Z:     at SK (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:462:1002)
2023-09-29 06:35:35.829Z:     at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
2023-09-29 06:35:35.835Z:     at async SAA (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:479:3660)
2023-09-29 06:35:35.839Z:     at async GC (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:479:4775)
2023-09-29 06:35:35.846Z:     at async ZeA (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:611:12251)
2023-09-29 06:35:35.851Z:     at async VeA (/usr/lib/node_modules/@devcontainers/cli/dist/spec-node/devContainersSpecCLI.js:611:11992)
2023-09-29 06:35:35.859Z: {"outcome":"error","message":"Command failed: docker buildx build --load --build-context dev_containers_feature_content_source=/tmp/devcontainercli-root/container-features/0.51.3-1695969273547 --build-arg _DEV_CONTAINERS_BASE_IMAGE=mcr.microsoft.com/devcontainers/base:debian --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp --target dev_containers_target_stage -t vsc-visionsense-next-e62775ff136c615683c0043f03787e0fe0fe790f047fbe439719e7538d83f2b8-features -f /tmp/devcontainercli-root/container-features/0.51.3-1695969273547/Dockerfile.extended /var/lib/docker/codespacemount/.persistedshare/empty-folder","description":"An error occurred setting up the container."}
2023-09-29 06:35:35.864Z: devcontainer process exited with exit code 1

====================================== ERROR ====================================
2023-09-29 06:35:35.871Z: Failed to create container.
=================================================================================
2023-09-29 06:35:35.876Z: Error: Command failed: docker buildx build --load --build-context dev_containers_feature_content_source=/tmp/devcontainercli-root/container-features/0.51.3-1695969273547 --build-arg _DEV_CONTAINERS_BASE_IMAGE=mcr.microsoft.com/devcontainers/base:debian --build-arg _DEV_CONTAINERS_IMAGE_USER=root --build-arg _DEV_CONTAINERS_FEATURE_CONTENT_SOURCE=dev_container_feature_content_temp --target dev_containers_target_stage -t vsc-visionsense-next-e62775ff136c615683c0043f03787e0fe0fe790f047fbe439719e7538d83f2b8-features -f /tmp/devcontainercli-root/container-features/0.51.3-1695969273547/Dockerfile.extended /var/lib/docker/codespacemount/.persistedshare/empty-folder
2023-09-29 06:35:35.885Z: Error code: 1302 (UnifiedContainersErrorFatalCreatingContainer)

====================================== ERROR ====================================
2023-09-29 06:35:35.889Z: Container creation failed.
=================================================================================
2023-09-29 06:35:35.891Z: 

===================================== WARNING ===================================
2023-09-29 06:35:35.895Z: Creating recovery container.
=================================================================================

=================================================================================
2023-09-29 06:35:47.103Z: Creating container...
2023-09-29 06:35:47.123Z: $ devcontainer up --id-label Type=codespaces --workspace-folder /var/lib/docker/codespacemount/workspace/visionsense-next --mount type=bind,source=/.codespaces/agent/mount/cache,target=/vscode --user-data-folder /var/lib/docker/codespacemount/.persistedshare --container-data-folder .vscode-remote/data/Machine --container-system-data-folder /var/vscode-remote --log-level trace --log-format json --update-remote-user-uid-default never --mount-workspace-git-root false --omit-config-remote-env-from-metadata --skip-non-blocking-commands --skip-post-create --config "/var/lib/docker/codespacemount/workspace/visionsense-next/.devcontainer/devcontainer.json" --override-config /root/.codespaces/shared/merged_devcontainer.json --default-user-env-probe loginInteractiveShell --container-session-data-folder /workspaces/.codespaces/.persistedshare/devcontainers-cli/cache --secrets-file /root/.codespaces/shared/user-secrets-envs.json
2023-09-29 06:35:47.290Z: @devcontainers/cli 0.51.3. Node.js v18.17.1. linux 6.2.0-1012-azure x64.
2023-09-29 06:35:47.740Z: $alpine -c echo Container started
2023-09-29 06:35:47.762Z: Unable to find image 'mcr.microsoft.com/devcontainers/base:alpine' locally
2023-09-29 06:35:47.877Z: alpine: Pulling from devcontainers/base
2023-09-29 06:35:47.911Z: 
�[1A�[2K
7264a8db6415: Pulling fs layer 
2023-09-29 06:35:47.918Z: �[1B
�[1A�[2K
4f4fb700ef54: Pulling fs layer 
�[1B
�[1A�[2K
41e947bf1295: Pulling fs layer 
�[1B
�[1A�[2K
3f925545a832: Pulling fs layer 
�[1B
�[1A�[2K
669c9a9e32ad: Pulling fs layer 
�[1B
�[1A�[2K
72a62680b009: Pulling fs layer 
�[1B
�[1A�[2K
f55216dbeedf: Pulling fs layer 
�[1B
�[1A�[2K
04f83be604fc: Pulling fs layer 
�[1B�[5A�[2K
3f925545a832: Waiting 
�[5B�[4A�[2K
669c9a9e32ad: Waiting 
�[4B�[3A�[2K
72a62680b009: Waiting 
�[3B�[2A�[2K
f55216dbeedf: Waiting 
�[2B�[1A�[2K
04f83be604fc: Waiting 
�[1B2023-09-29 06:35:47.979Z: �[8A2023-09-29 06:35:47.983Z: �[2K
7264a8db6415: Downloading  48.18kB/3.402MB
�[8B2023-09-29 06:35:47.990Z: �[6A2023-09-29 06:35:47.994Z: �[2K
41e947bf1295: Downloading     413B/413B
2023-09-29 06:35:48.001Z: �[6B2023-09-29 06:35:48.011Z: �[6A�[2K
2023-09-29 06:35:48.018Z: 41e947bf1295: Verifying Checksum 
2023-09-29 06:35:48.025Z: �[6B2023-09-29 06:35:48.037Z: �[6A�[2K2023-09-29 06:35:48.041Z: 
41e947bf1295: 2023-09-29 06:35:48.054Z: Download complete 
�[6B2023-09-29 06:35:48.059Z: �[7A2023-09-29 06:35:48.062Z: �[2K2023-09-29 06:35:48.066Z: 
2023-09-29 06:35:48.072Z: 4f4fb700ef54: 2023-09-29 06:35:48.079Z: Downloading      32B/32B
2023-09-29 06:35:48.085Z: �[7B2023-09-29 06:35:48.092Z: �[7A2023-09-29 06:35:48.100Z: �[2K2023-09-29 06:35:48.102Z: 
2023-09-29 06:35:48.107Z: 4f4fb700ef54: 2023-09-29 06:35:48.109Z: Verifying Checksum 
2023-09-29 06:35:48.117Z: �[7B2023-09-29 06:35:48.123Z: �[7A2023-09-29 06:35:48.126Z: �[2K2023-09-29 06:35:48.131Z: 
2023-09-29 06:35:48.135Z: 4f4fb700ef54: 2023-09-29 06:35:48.145Z: Download complete 
2023-09-29 06:35:48.154Z: �[7B2023-09-29 06:35:48.167Z: �[8A2023-09-29 06:35:48.173Z: �[2K2023-09-29 06:35:48.179Z: 
2023-09-29 06:35:48.193Z: 7264a8db6415: 2023-09-29 06:35:48.201Z: Download complete 
2023-09-29 06:35:48.206Z: �[8B2023-09-29 06:35:48.210Z: �[8A2023-09-29 06:35:48.216Z: �[2K2023-09-29 06:35:48.221Z: 
2023-09-29 06:35:48.228Z: 7264a8db6415: 2023-09-29 06:35:48.232Z: Extracting  65.54kB/3.402MB
2023-09-29 06:35:48.243Z: �[8B2023-09-29 06:35:48.251Z: �[5A�[2K
3f925545a832: Downloading     134B/134B
�[5B�[5A�[2K
3f925545a832: Verifying Checksum 
�[5B�[5A�[2K
3f925545a832: Download complete 
�[5B2023-09-29 06:35:48.257Z: �[3A2023-09-29 06:35:48.266Z: �[2K2023-09-29 06:35:48.274Z: 
2023-09-29 06:35:48.285Z: 72a62680b009: 2023-09-29 06:35:48.289Z: Downloading     233B/233B
2023-09-29 06:35:48.299Z: �[3B2023-09-29 06:35:48.312Z: �[3A2023-09-29 06:35:48.317Z: �[2K2023-09-29 06:35:48.324Z: 
2023-09-29 06:35:48.331Z: 72a62680b009: 2023-09-29 06:35:48.343Z: Verifying Checksum 
2023-09-29 06:35:48.351Z: �[3B2023-09-29 06:35:48.357Z: �[3A2023-09-29 06:35:48.360Z: �[2K2023-09-29 06:35:48.366Z: 
2023-09-29 06:35:48.377Z: 72a62680b009: 2023-09-29 06:35:48.382Z: Download complete 
2023-09-29 06:35:48.386Z: �[3B2023-09-29 06:35:48.393Z: �[8A2023-09-29 06:35:48.396Z: �[2K2023-09-29 06:35:48.400Z: 
2023-09-29 06:35:48.405Z: 7264a8db6415: 2023-09-29 06:35:48.409Z: Extracting  393.2kB/3.402MB
2023-09-29 06:35:48.422Z: �[8B2023-09-29 06:35:48.431Z: �[2A2023-09-29 06:35:48.437Z: �[2K2023-09-29 06:35:48.445Z: 
2023-09-29 06:35:48.454Z: f55216dbeedf: 2023-09-29 06:35:48.460Z: Downloading  538.3kB/217.5MB
2023-09-29 06:35:48.471Z: �[2B2023-09-29 06:35:48.473Z: �[1A�[2K
04f83be604fc: Downloading  390.9kB/38.17MB
�[1B2023-09-29 06:35:48.484Z: �[8A2023-09-29 06:35:48.493Z: �[2K2023-09-29 06:35:48.499Z: 
2023-09-29 06:35:48.504Z: 7264a8db6415: 2023-09-29 06:35:48.509Z: Extracting  1.376MB/3.402MB
2023-09-29 06:35:48.514Z: �[8B2023-09-29 06:35:48.521Z: �[2A2023-09-29 06:35:48.525Z: �[2K2023-09-29 06:35:48.529Z: 
2023-09-29 06:35:48.537Z: f55216dbeedf: 2023-09-29 06:35:48.545Z: Downloading  7.567MB/217.5MB
2023-09-29 06:35:48.549Z: �[2B2023-09-29 06:35:48.553Z: �[1A�[2K
04f83be604fc: Downloading  5.896MB/38.17MB
�[1B2023-09-29 06:35:48.567Z: �[8A�[2K
7264a8db6415: 2023-09-29 06:35:48.576Z: Extracting  2.163MB/3.402MB
�[8B2023-09-29 06:35:48.581Z: �[2A�[2K
f55216dbeedf: Downloading  14.58MB/217.5MB
�[2B2023-09-29 06:35:48.593Z: �[1A�[2K
04f83be604fc: Downloading  13.76MB/38.17MB
�[1B2023-09-29 06:35:48.600Z: �[8A�[2K
7264a8db6415: Extracting  2.556MB/3.402MB
�[8B2023-09-29 06:35:48.603Z: �[2A�[2K
f55216dbeedf: Downloading  21.61MB/217.5MB
�[2B2023-09-29 06:35:48.615Z: �[1A�[2K
04f83be604fc: Downloading  22.81MB/38.17MB
�[1B2023-09-29 06:35:48.622Z: �[8A�[2K
7264a8db6415: Extracting  3.277MB/3.402MB
�[8B2023-09-29 06:35:48.628Z: �[8A�[2K
7264a8db6415: 2023-09-29 06:35:48.634Z: Extracting  3.402MB/3.402MB
�[8B2023-09-29 06:35:48.637Z: �[2A�[2K
f55216dbeedf: 2023-09-29 06:35:48.649Z: Downloading  26.48MB/217.5MB
�[2B2023-09-29 06:35:48.663Z: �[8A�[2K
7264a8db6415: Extracting  3.402MB/3.402MB
�[8B2023-09-29 06:35:48.673Z: �[1A�[2K
04f83be604fc: Downloading  34.21MB/38.17MB
�[1B2023-09-29 06:35:48.683Z: �[1A�[2K
04f83be604fc: Verifying Checksum 
�[1B2023-09-29 06:35:48.691Z: �[1A�[2K
04f83be604fc: Download complete 
�[1B2023-09-29 06:35:48.705Z: �[2A�[2K
f55216dbeedf: Downloading  32.96MB/217.5MB
�[2B2023-09-29 06:35:48.809Z: �[2A2023-09-29 06:35:48.815Z: �[2K2023-09-29 06:35:48.827Z: 
2023-09-29 06:35:48.830Z: f55216dbeedf: 2023-09-29 06:35:48.838Z: Downloading  44.86MB/217.5MB
�[2B2023-09-29 06:35:48.848Z: �[8A�[2K
7264a8db6415: 2023-09-29 06:35:48.851Z: Pull complete 
�[8B2023-09-29 06:35:48.879Z: �[7A�[2K
4f4fb700ef54: Extracting      32B/32B
2023-09-29 06:35:48.890Z: �[7B2023-09-29 06:35:48.899Z: �[7A�[2K
2023-09-29 06:35:48.901Z: 4f4fb700ef54: Extracting      32B/32B
�[7B2023-09-29 06:35:48.914Z: �[2A�[2K
2023-09-29 06:35:48.919Z: f55216dbeedf: 2023-09-29 06:35:48.924Z: Downloading  53.51MB/217.5MB
�[2B2023-09-29 06:35:49.019Z: �[2A�[2K2023-09-29 06:35:49.030Z: 
f55216dbeedf: 2023-09-29 06:35:49.046Z: Downloading  62.16MB/217.5MB
�[2B2023-09-29 06:35:49.125Z: �[2A�[2K
2023-09-29 06:35:49.131Z: f55216dbeedf: 2023-09-29 06:35:49.136Z: Downloading  70.27MB/217.5MB
�[2B2023-09-29 06:35:49.225Z: �[2A�[2K
f55216dbeedf: 2023-09-29 06:35:49.233Z: Downloading     80MB/217.5MB
�[2B2023-09-29 06:35:49.329Z: �[2A�[2K
f55216dbeedf: 2023-09-29 06:35:49.336Z: Downloading  89.74MB/217.5MB
�[2B2023-09-29 06:35:49.435Z: �[2A�[2K
f55216dbeedf: 2023-09-29 06:35:49.440Z: Downloading    100MB/217.5MB
�[2B2023-09-29 06:35:49.498Z: �[7A�[2K
4f4fb700ef54: Pull complete 
�[7B2023-09-29 06:35:49.531Z: �[6A�[2K
41e947bf1295: Extracting     413B/413B
�[6B�[6A�[2K
41e947bf1295: Extracting     413B/413B
�[6B2023-09-29 06:35:49.541Z: �[2A2023-09-29 06:35:49.548Z: �[2K2023-09-29 06:35:49.556Z: 
2023-09-29 06:35:49.565Z: f55216dbeedf: 2023-09-29 06:35:49.572Z: Downloading  109.7MB/217.5MB
2023-09-29 06:35:49.578Z: �[2B2023-09-29 06:35:49.641Z: �[2A�[2K
f55216dbeedf: 2023-09-29 06:35:49.649Z: Downloading  118.4MB/217.5MB
�[2B2023-09-29 06:35:49.749Z: �[2A�[2K
f55216dbeedf: 2023-09-29 06:35:49.753Z: Downloading    127MB/217.5MB
�[2B2023-09-29 06:35:49.854Z: �[2A�[2K
f55216dbeedf: Downloading  136.2MB/217.5MB
�[2B2023-09-29 06:35:49.919Z: �[6A�[2K
41e947bf1295: Pull complete 
�[6B2023-09-29 06:35:49.952Z: �[5A2023-09-29 06:35:49.954Z: �[2K2023-09-29 06:35:49.965Z: 
2023-09-29 06:35:49.975Z: 3f925545a832: 2023-09-29 06:35:49.983Z: Extracting     134B/134B
2023-09-29 06:35:49.991Z: �[5B2023-09-29 06:35:49.995Z: �[5A2023-09-29 06:35:50.001Z: �[2K2023-09-29 06:35:50.005Z: 
2023-09-29 06:35:50.011Z: 3f925545a832: 2023-09-29 06:35:50.015Z: Extracting     134B/134B
2023-09-29 06:35:50.020Z: �[5B2023-09-29 06:35:50.025Z: �[2A2023-09-29 06:35:50.028Z: �[2K2023-09-29 06:35:50.035Z: 
2023-09-29 06:35:50.040Z: f55216dbeedf: 2023-09-29 06:35:50.047Z: Downloading  145.4MB/217.5MB
2023-09-29 06:35:50.052Z: �[2B2023-09-29 06:35:50.068Z: �[2A2023-09-29 06:35:50.075Z: �[2K2023-09-29 06:35:50.079Z: 
2023-09-29 06:35:50.103Z: f55216dbeedf: 2023-09-29 06:35:50.117Z: Downloading  151.9MB/217.5MB
2023-09-29 06:35:50.125Z: �[2B2023-09-29 06:35:50.164Z: �[2A2023-09-29 06:35:50.169Z: �[2K2023-09-29 06:35:50.173Z: 
2023-09-29 06:35:50.183Z: f55216dbeedf: 2023-09-29 06:35:50.192Z: Downloading  161.6MB/217.5MB
2023-09-29 06:35:50.199Z: �[2B2023-09-29 06:35:50.266Z: �[2A2023-09-29 06:35:50.268Z: �[2K2023-09-29 06:35:50.272Z: 
2023-09-29 06:35:50.279Z: f55216dbeedf: 2023-09-29 06:35:50.282Z: Downloading  171.9MB/217.5MB
2023-09-29 06:35:50.286Z: �[2B2023-09-29 06:35:50.316Z: �[5A2023-09-29 06:35:50.319Z: �[2K2023-09-29 06:35:50.322Z: 
2023-09-29 06:35:50.324Z: 3f925545a832: 2023-09-29 06:35:50.333Z: Pull complete 
2023-09-29 06:35:50.335Z: �[5B2023-09-29 06:35:50.365Z: �[2A2023-09-29 06:35:50.367Z: �[2K
f55216dbeedf: Downloading  180.6MB/217.5MB
�[2B2023-09-29 06:35:50.472Z: �[2A2023-09-29 06:35:50.474Z: �[2K
f55216dbeedf: Downloading  189.2MB/217.5MB
�[2B2023-09-29 06:35:50.577Z: �[2A2023-09-29 06:35:50.582Z: �[2K
f55216dbeedf: Downloading  199.5MB/217.5MB
�[2B2023-09-29 06:35:50.684Z: �[2A�[2K
f55216dbeedf: Downloading  209.8MB/217.5MB
�[2B2023-09-29 06:35:50.760Z: �[4A�[2K
669c9a9e32ad: 2023-09-29 06:35:50.767Z: Download complete 
�[4B�[4A2023-09-29 06:35:50.769Z: �[2K
669c9a9e32ad: Extracting     223B/223B
�[4B2023-09-29 06:35:50.777Z: �[4A�[2K
669c9a9e32ad: Extracting     223B/223B
�[4B2023-09-29 06:35:50.783Z: �[2A�[2K
f55216dbeedf: Verifying Checksum 
�[2B�[2A�[2K
f55216dbeedf: Download complete 
�[2B2023-09-29 06:35:51.132Z: �[4A�[2K
669c9a9e32ad: Pull complete 
�[4B2023-09-29 06:35:51.158Z: �[3A�[2K
72a62680b009: Extracting     233B/233B
�[3B2023-09-29 06:35:51.165Z: �[3A�[2K
72a62680b009: Extracting     233B/233B
�[3B2023-09-29 06:35:51.285Z: �[3A�[2K
72a62680b009: Pull complete 
�[3B2023-09-29 06:35:51.354Z: �[2A�[2K
f55216dbeedf: Extracting  557.1kB/217.5MB
�[2B2023-09-29 06:35:51.457Z: �[2A�[2K
f55216dbeedf: Extracting  5.014MB/217.5MB
�[2B2023-09-29 06:35:51.563Z: �[2A�[2K
f55216dbeedf: Extracting   11.7MB/217.5MB
�[2B2023-09-29 06:35:51.676Z: �[2A�[2K
f55216dbeedf: Extracting  16.71MB/217.5MB
�[2B2023-09-29 06:35:51.790Z: �[2A�[2K
f55216dbeedf: Extracting   19.5MB/217.5MB
�[2B2023-09-29 06:35:51.906Z: �[2A�[2K
f55216dbeedf: Extracting  20.61MB/217.5MB
�[2B2023-09-29 06:35:52.020Z: �[2A2023-09-29 06:35:52.027Z: �[2K
f55216dbeedf: Extracting  21.73MB/217.5MB
�[2B2023-09-29 06:35:52.121Z: �[2A�[2K
f55216dbeedf: Extracting  25.07MB/217.5MB
�[2B2023-09-29 06:35:52.229Z: �[2A�[2K
2023-09-29 06:35:52.231Z: f55216dbeedf: Extracting  29.52MB/217.5MB
�[2B2023-09-29 06:35:52.336Z: �[2A�[2K2023-09-29 06:35:52.341Z: 
f55216dbeedf: Extracting  35.09MB/217.5MB
�[2B2023-09-29 06:35:52.444Z: �[2A�[2K2023-09-29 06:35:52.447Z: 
f55216dbeedf: Extracting  40.67MB/217.5MB
�[2B2023-09-29 06:35:52.552Z: �[2A�[2K2023-09-29 06:35:52.555Z: 
f55216dbeedf: Extracting  45.68MB/217.5MB
�[2B2023-09-29 06:35:52.654Z: �[2A�[2K
2023-09-29 06:35:52.656Z: f55216dbeedf: Extracting  50.69MB/217.5MB
�[2B2023-09-29 06:35:52.771Z: �[2A�[2K2023-09-29 06:35:52.773Z: 
f55216dbeedf: Extracting  55.71MB/217.5MB
�[2B2023-09-29 06:35:52.877Z: �[2A�[2K2023-09-29 06:35:52.881Z: 
f55216dbeedf: Extracting  59.05MB/217.5MB
�[2B2023-09-29 06:35:52.984Z: �[2A�[2K
2023-09-29 06:35:52.987Z: f55216dbeedf: Extracting  62.39MB/217.5MB
�[2B2023-09-29 06:35:53.086Z: �[2A�[2K2023-09-29 06:35:53.088Z: 
f55216dbeedf: Extracting   67.4MB/217.5MB
�[2B2023-09-29 06:35:53.186Z: �[2A�[2K
2023-09-29 06:35:53.190Z: f55216dbeedf: Extracting  76.32MB/217.5MB
�[2B2023-09-29 06:35:53.287Z: �[2A�[2K
2023-09-29 06:35:53.290Z: f55216dbeedf: Extracting  85.23MB/217.5MB
�[2B2023-09-29 06:35:53.391Z: �[2A�[2K
f55216dbeedf: 2023-09-29 06:35:53.397Z: Extracting  94.14MB/217.5MB
�[2B2023-09-29 06:35:53.500Z: �[2A�[2K
f55216dbeedf: 2023-09-29 06:35:53.508Z: Extracting  102.5MB/217.5MB
�[2B2023-09-29 06:35:53.601Z: �[2A�[2K2023-09-29 06:35:53.608Z: 
f55216dbeedf: Extracting  105.8MB/217.5MB
�[2B2023-09-29 06:35:53.715Z: �[2A�[2K2023-09-29 06:35:53.720Z: 
f55216dbeedf: Extracting  110.3MB/217.5MB
�[2B2023-09-29 06:35:53.819Z: �[2A�[2K
f55216dbeedf: Extracting  112.5MB/217.5MB
�[2B2023-09-29 06:35:53.919Z: �[2A�[2K
f55216dbeedf: Extracting  114.2MB/217.5MB
�[2B2023-09-29 06:35:54.020Z: �[2A�[2K
f55216dbeedf: Extracting  120.3MB/217.5MB
�[2B2023-09-29 06:35:54.133Z: �[2A�[2K
f55216dbeedf: Extracting  125.3MB/217.5MB
�[2B2023-09-29 06:35:54.241Z: �[2A�[2K
f55216dbeedf: Extracting    132MB/217.5MB
�[2B2023-09-29 06:35:54.342Z: �[2A�[2K
f55216dbeedf: Extracting  137.6MB/217.5MB
�[2B2023-09-29 06:35:54.445Z: �[2A�[2K
f55216dbeedf: Extracting    142MB/217.5MB
�[2B2023-09-29 06:35:54.555Z: �[2A�[2K
f55216dbeedf: Extracting  148.7MB/217.5MB
�[2B2023-09-29 06:35:54.664Z: �[2A�[2K
f55216dbeedf: Extracting  153.7MB/217.5MB
�[2B2023-09-29 06:35:54.765Z: �[2A�[2K
f55216dbeedf: Extracting  159.9MB/217.5MB
�[2B2023-09-29 06:35:54.873Z: �[2A�[2K
f55216dbeedf: Extracting  166.6MB/217.5MB
�[2B2023-09-29 06:35:54.978Z: �[2A�[2K
f55216dbeedf: Extracting  172.7MB/217.5MB
�[2B2023-09-29 06:35:55.086Z: �[2A�[2K
f55216dbeedf: Extracting  179.4MB/217.5MB
�[2B2023-09-29 06:35:55.187Z: �[2A�[2K
f55216dbeedf: Extracting  185.5MB/217.5MB
�[2B2023-09-29 06:35:55.288Z: �[2A�[2K
f55216dbeedf: Extracting  191.6MB/217.5MB
�[2B2023-09-29 06:35:55.406Z: �[2A�[2K
f55216dbeedf: Extracting  197.8MB/217.5MB
�[2B2023-09-29 06:35:55.497Z: �[2A�[2K
f55216dbeedf: Extracting  203.3MB/217.5MB
�[2B2023-09-29 06:35:55.616Z: �[2A�[2K
f55216dbeedf: Extracting  208.9MB/217.5MB
�[2B2023-09-29 06:35:55.739Z: �[2A�[2K
f55216dbeedf: Extracting  210.6MB/217.5MB
�[2B2023-09-29 06:35:55.849Z: �[2A2023-09-29 06:35:55.851Z: �[2K
f55216dbeedf: Extracting  212.8MB/217.5MB
�[2B2023-09-29 06:35:55.951Z: �[2A2023-09-29 06:35:55.953Z: �[2K
f55216dbeedf: Extracting  213.4MB/217.5MB
�[2B2023-09-29 06:35:56.160Z: �[2A�[2K
f55216dbeedf: Extracting    215MB/217.5MB
�[2B2023-09-29 06:35:56.343Z: �[2A�[2K
f55216dbeedf: 2023-09-29 06:35:56.345Z: Extracting  216.1MB/217.5MB
�[2B2023-09-29 06:35:56.357Z: �[2A2023-09-29 06:35:56.365Z: �[2K
f55216dbeedf: Extracting  217.5MB/217.5MB
�[2B2023-09-29 06:35:58.516Z: �[2A�[2K
f55216dbeedf: Pull complete 
�[2B2023-09-29 06:35:58.589Z: �[1A�[2K
04f83be604fc: Extracting  393.2kB/38.17MB
�[1B2023-09-29 06:35:58.694Z: �[1A�[2K
04f83be604fc: Extracting  3.539MB/38.17MB
�[1B2023-09-29 06:35:58.806Z: �[1A2023-09-29 06:35:58.812Z: �[2K
04f83be604fc: Extracting  5.112MB/38.17MB
�[1B2023-09-29 06:35:58.941Z: �[1A�[2K
04f83be604fc: Extracting   9.83MB/38.17MB
�[1B2023-09-29 06:35:59.044Z: �[1A�[2K
04f83be604fc: Extracting   11.4MB/38.17MB
�[1B2023-09-29 06:35:59.146Z: �[1A�[2K
04f83be604fc: Extracting  16.91MB/38.17MB
�[1B2023-09-29 06:35:59.253Z: �[1A�[2K
04f83be604fc: Extracting  22.81MB/38.17MB
�[1B2023-09-29 06:35:59.359Z: �[1A�[2K
04f83be604fc: Extracting  25.56MB/38.17MB
�[1B2023-09-29 06:35:59.528Z: �[1A�[2K
04f83be604fc: Extracting  26.74MB/38.17MB
�[1B2023-09-29 06:35:59.629Z: �[1A�[2K
04f83be604fc: Extracting  27.53MB/38.17MB
�[1B2023-09-29 06:35:59.730Z: �[1A2023-09-29 06:35:59.733Z: �[2K
04f83be604fc: Extracting  29.49MB/38.17MB
�[1B2023-09-29 06:35:59.862Z: �[1A�[2K
04f83be604fc: Extracting  31.85MB/38.17MB
�[1B2023-09-29 06:35:59.974Z: �[1A�[2K
04f83be604fc: Extracting     35MB/38.17MB
�[1B2023-09-29 06:36:00.080Z: �[1A�[2K
04f83be604fc: Extracting  36.18MB/38.17MB
�[1B2023-09-29 06:36:00.136Z: �[1A�[2K
04f83be604fc: Extracting  38.17MB/38.17MB
�[1B2023-09-29 06:36:00.724Z: �[1A�[2K
04f83be604fc: Pull complete 
�[1B2023-09-29 06:36:00.771Z: Digest: sha256:3cabfd12e1ecc69fe656053ac940e1feac0aef8e65f0cf78d613da7b352a5c4d
2023-09-29 06:36:00.797Z: Status: Downloaded newer image for mcr.microsoft.com/devcontainers/base:alpine
2023-09-29 06:36:01.099Z: Container started
2023-09-29 06:36:01.341Z: Outcome: success User: vscode WorkspaceFolder: /workspaces/visionsense-next
2023-09-29 06:36:01.350Z: devcontainer process exited with exit code 0

=================================================================================
2023-09-29 06:36:02.076Z: Running blocking commands...
2023-09-29 06:36:02.110Z: $ devcontainer up --id-label Type=codespaces --workspace-folder /var/lib/docker/codespacemount/workspace/visionsense-next --mount type=bind,source=/.codespaces/agent/mount/cache,target=/vscode --user-data-folder /var/lib/docker/codespacemount/.persistedshare --container-data-folder .vscode-remote/data/Machine --container-system-data-folder /var/vscode-remote --log-level trace --log-format json --update-remote-user-uid-default never --mount-workspace-git-root false --omit-config-remote-env-from-metadata --skip-non-blocking-commands --expect-existing-container --config "/var/lib/docker/codespacemount/workspace/visionsense-next/.devcontainer/devcontainer.json" --override-config /root/.codespaces/shared/merged_devcontainer.json --default-user-env-probe loginInteractiveShell --container-session-data-folder /workspaces/.codespaces/.persistedshare/devcontainers-cli/cache --secrets-file /root/.codespaces/shared/user-secrets-envs.json
2023-09-29 06:36:02.341Z: @devcontainers/cli 0.51.3. Node.js v18.17.1. linux 6.2.0-1012-azure x64.
2023-09-29 06:36:02.615Z: Outcome: success User: vscode WorkspaceFolder: /workspaces/visionsense-next
2023-09-29 06:36:02.625Z: devcontainer process exited with exit code 0

=================================================================================
2023-09-29 06:36:02.651Z: Configuring codespace...

=================================================================================
2023-09-29 06:36:02.683Z: Finished configuring codespace.

@alexander-smolyakov
Copy link
Contributor

@sr229, thanks for providing info!

@alexander-smolyakov
Copy link
Contributor

Update on the issue:

The issue is related to the nonFreePackages option of the common-utils feature. If this option is enabled, the feature tries to update the packages repo in the sources.list file and fails since the sources.list file doesn't exist. So, the repro sample could be decreased to:

{
  "name": "DevSample",
  "image": "mcr.microsoft.com/devcontainers/base:debian",
  "features": {
    "ghcr.io/devcontainers/features/common-utils:2": {
      "nonFreePackages": true
    }
  }
}

The current feature implementation relies on the fact that the sources.list file exists and contains links to the packages repo. We need to update the common-utils feature to handle the case when the sources.list file is empty or doesn't exist more gracefully.

Related code: common-utils/main.sh

@gauravsaini04
Copy link
Contributor

PR has been merged

@sr229 sr229 closed this as completed Feb 9, 2024
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

No branches or pull requests

5 participants