-
Notifications
You must be signed in to change notification settings - Fork 228
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
devcontainer build doesn't go well with multi-CPU architecture support enabled #86
Comments
You can use I thought |
@chrmarti Well, it's devcontainer's image Here it is:
All this is the output of |
I'll properly report the issue. Description
Steps to reproduce the issue:
Actual result: Build fails with error message:
Expected result: Build succeeds. Remote - Containers version: v0.241.3 Additional info: It happens as Full log:
|
What do you get for |
$ docker buildx version
github.com/docker/buildx v0.7.1 05846896d149da05f3d6fd1e7770da187b52a247 |
I had buildx manually installed. Deleting it switched to Docker Desktop bundled-in version |
Looks like microsoft/vscode-remote-release#7305. Closing for now. Thanks. |
If multi-CPU architecture support is enabled, devcontainer build action fails if
features
are specified in devcontainers.json:As you can see, there is even a warning which mentions that the image will reside in build cache only.
The fix is to add argument
--load
to this build command. This argument also doesn't harm whiledocker
driver is being used.The text was updated successfully, but these errors were encountered: