jolt: Guest program compilation with stock rust compiler. (#116)

This commit is contained in:
rodiazet
2025-08-30 00:43:27 +02:00
committed by GitHub
parent 664dc62c9f
commit c772b1ff2c
9 changed files with 271 additions and 25 deletions

View File

@@ -5,6 +5,9 @@ FROM ${BASE_IMAGE_TAG}
# The ere-base image provides Rust, Cargo (with a default nightly), and common tools.
# We operate as root for SDK installation.
# Add `rust-src` component to enable std build for nightly rust.
RUN rustup +nightly component add rust-src
# Copy the Jolt SDK (CLI) installer script from the workspace context
COPY scripts/sdk_installers/install_jolt_sdk.sh /tmp/install_jolt_sdk.sh
RUN chmod +x /tmp/install_jolt_sdk.sh