I am using a Windows host with vscode (v1.92.2) and connecting via remote-SSH extension and with dev-containers extension (v0.380.0) to a docker container, running on another Linux machine.
The docker image is a custom Linux-based build environment, and while connecting to it I get the following error message from vscode:
You are about to connect to an OS version that is unsupported by Visual Studio Code
The docker image is a Linux build, that has apt.
So, as suggested by someone, I tried to install tar, curl, wget and the installation worked.
This did not solve the issue.
I also found these requirements for the “Remote host …”:
https://code.visualstudio.com/docs/remote/linux
but it is not clear which glibc they mean, the one of the remote host or the one inside the docker image.
I have:
- Linux host glibc: 2.31;
- docker image glibc: 2.23.
Does it mean, dev-containers are incompatible with my docker image?