We've found an issue where devcontainer.json does not work unless you force a containerUser.
I believe this is similar to #457.
I think this problem stems from:
In our case, in development environments we set ENVBUILDER_INSECURE to be able to use registries without proper TLS, but with this issue, that does not work.
Our workaround is to set containerUser for now and avoid the issue.
We've found an issue where
devcontainer.jsondoes not work unless you force acontainerUser.I believe this is similar to #457.
I think this problem stems from:
UserFromDockerfiledoes not find the user in theDockerfile, it callsuserFromImageto find it.In our case, in development environments we set
ENVBUILDER_INSECUREto be able to use registries without proper TLS, but with this issue, that does not work.Our workaround is to set
containerUserfor now and avoid the issue.