-
-
Notifications
You must be signed in to change notification settings - Fork 1
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
🐋 building the devcontainer is slow #4
Comments
I do not like that so much of the logic involved in setting up/building the devcontainer takes place at the expense of contributor time. I would like to be able to have all of that take place elsewhere and provide users of this project something similar to https://github.com/andreiborisov/docker-fish including the whole dev environment potentially as additional "layers". |
The |
propose to create a new this is the only alternative i see because ruby-build doesn't let you install pre-built binaries. |
Preliminary findings show that they are still built with shared libs support: /home/vscode/.rbenv/versions/3.2.2/bin/ruby: error while loading shared libraries: libruby.so.3.2: cannot open shared object file: No such file or directory
|
Building the devcontainer is slow because
rbenv install
takes forever as it is building ruby from source. We can circumvent this by usingrvm
. Ideally, we would have anrvm.fish
just like we havenvm.fish
, but the former does not yet exist. The task at hand is to write one of those in pure fish 3.0, install it using fisher, and install the pre-compiled binary for this platform using it.The text was updated successfully, but these errors were encountered: