-
Couldn't load subscription status.
- Fork 12
Docker #26
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
Docker #26
Conversation
Cargo.lock is tracked so we need to allow usage of the same crates in container builds.
There was a lot of redundancy between the Dockerfile and the rust-toolchain.toml file. It turns out that rust-toolchain.toml does almost all the needed configuration needed for a container build so the Dockerfile can be reduced to 4 lines.
|
I just pushed a new version to the repository. I think I did a few of the things you did, but I am not sure. Can I merge the request? |
|
you should be able to merge it. the feature flags patch should be redundant now. the rust-toolchain.toml file would create a conflict as I'm using the nightly-2023-07-11 version in my PR. I don't know why patch e49ec3a showed up here. i was experimenting with bootimage on my forked repo. |
|
Why did you close it? |
Some of the individual patches are still valid. the full patch set kept getting invalidated by your changes in the same files. |
This PR:
Features of this PR were inspired by the work of xonmello and earney and replaces #22