agentic-os (sha256:aa334b0398cbace714bdb4f15a2d41bd48e0ce8d90c28e685d41c50f8b60f823)

Published 2026-08-22 22:51:56 +00:00 by coilyco-ops in coilyco-flight-deck/agentic-os

Installation

docker pull forgejo.coilysiren.me/coilyco-flight-deck/agentic-os@sha256:aa334b0398cbace714bdb4f15a2d41bd48e0ce8d90c28e685d41c50f8b60f823
sha256:aa334b0398cbace714bdb4f15a2d41bd48e0ce8d90c28e685d41c50f8b60f823

Image layers

ARG RELEASE
ARG LAUNCHPAD_BUILD_ARCH
LABEL org.opencontainers.image.version=24.04
ADD file:cb9335ce6f27399c2b17787739d6675502767c53e0335ded2a5f0d003d996650 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=amd64
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=amd64 /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=amd64 /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=amd64 /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=amd64 /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=amd64 /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=amd64 /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
Container
2026-08-22 22:51:56 +00:00
0
OCI / Docker
linux/amd64
MIT
644 MiB
Versions (106) View all
v0.284.0 2026-08-29
release 2026-08-29
latest 2026-08-29
buildcache 2026-08-29