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
This worked without issue on my older machine but folks with Apple chips were having issues even running irb and require "rails" without getting a segfault (seg-fault.txt)
I was able to confirm on a personal machine that the exact same behavior occurred on my M2 laptop when using the feature. If I remove the feature and rebuild I am able to run rails console, etc without issue.
In order to fix this my solution was to try and pass the --platform=linux/amd64 as a runArgs
Unfortunately this doesn't fix the issue because the features are built and do not pass along the same runArgs that were used by the image
If we change our nice/slim devcontainer.json and copy the devcontainer.json the Dockerfile from ruby/images/.devcontainer we are able to properly pass --platform as a build.options and image + features be created with the same architecture
I'm not sure what the stance would be by folks that maintain the project but I'd like to propose using the build options as a default to avoid any "works on my machine" situations.
The text was updated successfully, but these errors were encountered:
Ran into this when trying to have our dev team start using devcontainers in our Rails 8.0 application.
Here's the simple
devcontainer.json
that is being usedThis worked without issue on my older machine but folks with Apple chips were having issues even running
irb
andrequire "rails"
without getting a segfault (seg-fault.txt)I was able to confirm on a personal machine that the exact same behavior occurred on my M2 laptop when using the feature. If I remove the feature and rebuild I am able to run rails console, etc without issue.
In order to fix this my solution was to try and pass the
--platform=linux/amd64
as arunArgs
Unfortunately this doesn't fix the issue because the features are built and do not pass along the same
runArgs
that were used by the imageIf we change our nice/slim
devcontainer.json
and copy thedevcontainer.json
theDockerfile
fromruby/images/.devcontainer
we are able to properly pass--platform
as abuild.options
and image + features be created with the same architectureCan find more people reporting similar issues here in vs-remote-releases repo a few days ago.
I'm not sure what the stance would be by folks that maintain the project but I'd like to propose using the build options as a default to avoid any "works on my machine" situations.
The text was updated successfully, but these errors were encountered: