John Keech

Results 55 comments of John Keech

The line length is definitely wrong in the base devcontainers image when no locale is explicitly set. ``` bash-5.1# echo ➜ | wc --max-line-length 0 bash-5.1# export LC_ALL=en_US.utf8 bash-5.1# echo...

Walking up the stack a bit on the image where it's broken, the upstream image `buildpack-deps:jammy-curl` https://github.com/devcontainers/images/blob/main/src/base-ubuntu/.devcontainer/Dockerfile#L3 also reproduces this issue without any devcontainer-specific configuration. ``` docker run --rm -it...

Looking at the Dockerfile for `buildpack-deps` and bisecting where it start breaking, it's right after `gnupg` is installed at https://github.com/docker-library/buildpack-deps/blob/93d6db0797f91ab674535553b7e0e762941a02d0/ubuntu/jammy/curl/Dockerfile#L14.

Thanks for the report and for sharing a minimal repro. My first question was whether the same base image is used in both scenarios, but based on [your repo](https://github.com/paule96/DevContainerSampleBug/blob/main/.devcontainer/devcontainer.docker-compose.yml#L5), it...

If you can't use host networking, then could you configure the DNS server that you want to use? https://docs.docker.com/network/#dns-services The DNS docs in Docker also say that it uses 8.8.8.8...

> #0 80.84 Errors were encountered while processing: > > #0 80.84 /tmp/apt-dpkg-install-XNTi4y/0-systemd_254.5-1_amd64.deb > > #0 80.93 E: Sub-process /usr/bin/dpkg returned an error code (1) Can you share the logs...

From the full logs, it looks like systemd/udev are already installed with a different version before the desktop-lite script installs newer versions, and the old version is somehow conflicting with...

It's a similar situation for this feature. It's not a [direct dependency](https://github.com/devcontainers/features/blob/main/src/desktop-lite/install.sh#L20-L56), but it's coming in transitively through one of the other packages that are installed via `apt`. Generally there...

>Currently I have a postAttachCommand that copies the content from the lib folder inside the extension folder (under .vscode-server/extensions) to the volume folder (mounter under the user HOME directory inside...