10 lines
378 B
Bash
Executable file
10 lines
378 B
Bash
Executable file
# This script install the Rust toolchain and the build system dependencies
|
|
# in Podman after the image has been built
|
|
|
|
#/usr/bin/env bash
|
|
|
|
curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain stable
|
|
cargo +stable install --force --version 0.1.1 cargo-config
|
|
cargo +stable install --force --version 1.16.0 just
|
|
cargo +stable install --force --version 0.27.0 cbindgen
|