You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a devcontainer is built lifecycle scripts can be included in the metadata. If this is the case envbuilder fails to unmarshal the metadata embedded in the OCI image. I believe envbuilder is trying to parse the metadata using the Spec struct in devcontainer.go file.
I looked into this a little further and adding UnknownFields map[string]interface{} `json:"-"` could potentially fix this by catching all unknown fields in a Map. Adding lifecycles do the spec would also fix this issue but imo unknown fields should be caught anyway to prevent issues in the future. I should be able to implement this sometime soon.
Uh oh!
There was an error while loading. Please reload this page.
When a devcontainer is built lifecycle scripts can be included in the metadata. If this is the case envbuilder fails to unmarshal the metadata embedded in the OCI image. I believe envbuilder is trying to parse the metadata using the Spec struct in devcontainer.go file.
The text was updated successfully, but these errors were encountered: