agentic-os (sha256:6f620ae69dcb2af7a0272d81c4df5d778bdf1b398b4004fb2a3ce3f1e4421b01)
Installation
docker pull forgejo.coilysiren.me/coilyco-flight-deck/agentic-os@sha256:6f620ae69dcb2af7a0272d81c4df5d778bdf1b398b4004fb2a3ce3f1e4421b01sha256:6f620ae69dcb2af7a0272d81c4df5d778bdf1b398b4004fb2a3ce3f1e4421b01Image layers
| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:0387b3d029de8fa08641ccfaa44c6a4ad07b93035420d53b49783ea27527d153 in / |
| CMD ["/bin/bash"] |
| ARG TRUNK_VERSION=0.21.14 |
| ARG WASM_PACK_VERSION=0.15.0 |
| ARG BINARYEN_VERSION=119 |
| ARG RUST_PINNED_VERSIONS=1.90.0 |
| ARG TARGETARCH=arm64 |
| ENV PATH=/usr/local/cargo/bin:/usr/local/bin:/usr/bin:/bin CARGO_HOME=/usr/local/cargo RUSTUP_HOME=/usr/local/rustup |
| LABEL org.opencontainers.image.source=https://forgejo.coilysiren.me/coilyco-flight-deck/agentic-os org.opencontainers.image.licenses=MIT org.opencontainers.image.title=agentic-os Rust build payload |
| SHELL [/bin/bash -o pipefail -c] |
| RUN |5 TRUNK_VERSION=0.21.14 WASM_PACK_VERSION=0.15.0 BINARYEN_VERSION=119 RUST_PINNED_VERSIONS=1.90.0 TARGETARCH=arm64 /bin/bash -o pipefail -c TARGETARCH="${TARGETARCH}" bash /tmp/prepare-build-stage.sh # buildkit |
| RUN |5 TRUNK_VERSION=0.21.14 WASM_PACK_VERSION=0.15.0 BINARYEN_VERSION=119 RUST_PINNED_VERSIONS=1.90.0 TARGETARCH=arm64 /bin/bash -o pipefail -c set -eux; apt-get update; apt-get install -y --no-install-recommends build-essential ca-certificates curl libasound2-dev libudev-dev libwayland-dev libxkbcommon-dev pkg-config; rm -rf /var/lib/apt/lists/*; curl --retry 5 --retry-all-errors --retry-delay 2 -fsSL https://sh.rustup.rs -o /tmp/rustup-init.sh; chmod 0755 /tmp/rustup-init.sh; /tmp/rustup-init.sh -y --no-modify-path --profile minimal --default-toolchain stable; rm /tmp/rustup-init.sh; rustup target add wasm32-unknown-unknown; rustup component add clippy rustfmt; for pin in ${RUST_PINNED_VERSIONS}; do rustup toolchain install "${pin}" --profile minimal --component clippy --component rustfmt; rustup target add wasm32-unknown-unknown --toolchain "${pin}"; done; chmod -R a+rwX /usr/local/cargo /usr/local/rustup; cargo --version # buildkit |
| RUN |5 TRUNK_VERSION=0.21.14 WASM_PACK_VERSION=0.15.0 BINARYEN_VERSION=119 RUST_PINNED_VERSIONS=1.90.0 TARGETARCH=arm64 /bin/bash -o pipefail -c set -eux; . /opt/agentic-os/arch.env; curl --retry 5 --retry-all-errors --retry-delay 2 -fsSL "https://github.com/trunk-rs/trunk/releases/download/v${TRUNK_VERSION}/trunk-${KDL_ARCH}-unknown-linux-gnu.tar.gz" -o /tmp/trunk.tar.gz; tar -xzf /tmp/trunk.tar.gz -C /usr/local/cargo/bin trunk; chmod 0755 /usr/local/cargo/bin/trunk; rm /tmp/trunk.tar.gz; trunk --version # buildkit |
| RUN |5 TRUNK_VERSION=0.21.14 WASM_PACK_VERSION=0.15.0 BINARYEN_VERSION=119 RUST_PINNED_VERSIONS=1.90.0 TARGETARCH=arm64 /bin/bash -o pipefail -c set -eux; . /opt/agentic-os/arch.env; curl --retry 5 --retry-all-errors --retry-delay 2 -fsSL "https://github.com/rustwasm/wasm-pack/releases/download/v${WASM_PACK_VERSION}/wasm-pack-v${WASM_PACK_VERSION}-${WASM_PACK_ARCH}-unknown-linux-musl.tar.gz" -o /tmp/wasm-pack.tar.gz; tar -xzf /tmp/wasm-pack.tar.gz -C /usr/local/cargo/bin --strip-components=1 "wasm-pack-v${WASM_PACK_VERSION}-${WASM_PACK_ARCH}-unknown-linux-musl/wasm-pack"; chmod 0755 /usr/local/cargo/bin/wasm-pack; rm /tmp/wasm-pack.tar.gz; wasm-pack --version # buildkit |
| RUN |5 TRUNK_VERSION=0.21.14 WASM_PACK_VERSION=0.15.0 BINARYEN_VERSION=119 RUST_PINNED_VERSIONS=1.90.0 TARGETARCH=arm64 /bin/bash -o pipefail -c set -eux; . /opt/agentic-os/arch.env; curl --retry 5 --retry-all-errors --retry-delay 2 -fsSL "https://github.com/WebAssembly/binaryen/releases/download/version_${BINARYEN_VERSION}/binaryen-version_${BINARYEN_VERSION}-${BINARYEN_ARCH}-linux.tar.gz" -o /tmp/binaryen.tar.gz; tar -xzf /tmp/binaryen.tar.gz -C /usr/local/bin --strip-components=2 "binaryen-version_${BINARYEN_VERSION}/bin/wasm-opt"; chmod 0755 /usr/local/bin/wasm-opt; rm /tmp/binaryen.tar.gz; wasm-opt --version # buildkit |
| RUN |5 TRUNK_VERSION=0.21.14 WASM_PACK_VERSION=0.15.0 BINARYEN_VERSION=119 RUST_PINNED_VERSIONS=1.90.0 TARGETARCH=arm64 /bin/bash -o pipefail -c printf '%s\n' '#include <wayland-client.h>' '#include <xkbcommon/xkbcommon.h>' 'int main(void) { return 0; }' > /tmp/rust-native-smoke.c; cc /tmp/rust-native-smoke.c $(pkg-config --cflags --libs wayland-client xkbcommon) -o /tmp/rust-native-smoke; /tmp/rust-native-smoke; rm /tmp/rust-native-smoke /tmp/rust-native-smoke.c # buildkit |
Labels
| Key | Value |
|---|---|
| org.opencontainers.image.licenses | MIT |
| org.opencontainers.image.source | https://forgejo.coilysiren.me/coilyco-flight-deck/agentic-os |
| org.opencontainers.image.title | agentic-os Rust build payload |
| org.opencontainers.image.version | 24.04 |
Details
2026-08-27 04:42:27 +00:00
Versions (106)
View all
Container
0
OCI / Docker
linux/arm64
MIT
573 MiB