1
0
mirror of https://github.com/containers/youki synced 2026-05-03 05:30:41 +02:00
Files
Josiah Parry 73b2a7a1d1 feat: add with_bundle() builder for init containers (#3502)
* add with_bundle() builder

Signed-off-by: Josiah Parry <josiah.parry@gmail.com>

* add basic test

Signed-off-by: Josiah Parry <josiah.parry@gmail.com>

* Update crates/libcontainer/src/container/init_builder.rs

Co-authored-by: Yusuke Sakurai <32348137+saku3@users.noreply.github.com>
Signed-off-by: Josiah Parry <josiah.parry@gmail.com>

---------

Signed-off-by: Josiah Parry <josiah.parry@gmail.com>
Co-authored-by: Yusuke Sakurai <32348137+saku3@users.noreply.github.com>
2026-04-30 05:23:14 +09:00
..

libcontainer

Building with musl

In order to build with musl you must first remove the libseccomp dependency as it will reference shared libraries (libseccomp) which cannot be built with musl.

Do this by using adding flags to Cargo. Use the --no-default-features flag followed by -F and whatever features you intend to build with such as v2 as defined in Cargo.toml under features section.

Next you will also need the +nightly flags when building with rustup and cargo.

# Add rustup +nightly musl to toolchain
rustup +nightly target add $(uname -m)-unknown-linux-musl

# Build rustup +nightly stdlib with musl
rustup +nightly toolchain install nightly-$(uname -m)-unknown-linux-musl

# Build musl standard library
cargo +nightly build -Zbuild-std --target $(uname -m)-unknown-linux-musl --no-default-features -F v2

cargo +nightly build --target $(uname -m)-unknown-linux-musl --no-default-features -F v2