-
Notifications
You must be signed in to change notification settings - Fork 193
Description
How could this project be improved?
In some scenarios it might be preferred to build the project as the root user instead of the lower privilege rust
user. One such example would be GitHub Actions. The Docker image is executed in an ephemeral VM whose only purpose is to run the build and die. Using this image in its current state requires a lot of permission changes prior and post build especially when using the cache action.
If you're interested in implementing this feature yourself, how could I help you?
I have made a very crude "fix" to the image in my fork which is used by this script run by this Action. Although this works it is rather hacky. A proper solution would probably be either a global installation of the toolchain in the image or a separate tag for a root-based image.
If you would be willing to accept such a change, I could spend some time in the next few weeks to sketch a PR for this.