ci-sdk (sha256:53e76ed995a4a76044758e654ed9be58ee67e5ffa90cefcb7ace7cb26dd34636)
Published 2026-05-10 03:07:51 +02:00 by buildagent
Installation
docker pull git.h-dv.de/h-dv/ci-sdk@sha256:53e76ed995a4a76044758e654ed9be58ee67e5ffa90cefcb7ace7cb26dd34636sha256:53e76ed995a4a76044758e654ed9be58ee67e5ffa90cefcb7ace7cb26dd34636About this package
Full SDK testing image with Python, Node.js, Go, and .NET
Image layers
| # debian.sh --arch 'amd64' out/ 'trixie' '@1777939200' |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends build-essential pkg-config cmake libssl-dev ca-certificates capnproto libcapnp-dev git procps curl nasm gnupg && rm -rf /var/lib/apt/lists/* && apt-get clean # buildkit |
| RUN /bin/sh -c curl -fsSL https://deb.nodesource.com/setup_20.x | bash - && apt-get install -y --no-install-recommends nodejs && rm -rf /var/lib/apt/lists/* && apt-get clean # buildkit |
| ARG RUST_VERSION=1.94.0 |
| ENV RUSTUP_HOME=/usr/local/rustup CARGO_HOME=/usr/local/cargo PATH=/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin RUST_VERSION=1.94.0 |
| RUN |1 RUST_VERSION=1.94.0 /bin/sh -c curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain ${RUST_VERSION} --profile minimal && rustup component add rustfmt clippy && chmod -R a+w $RUSTUP_HOME $CARGO_HOME # buildkit |
| ARG SCCACHE_VERSION=0.15.0 |
| ARG CARGO_DENY_VERSION=0.18.4 |
| RUN |3 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.15.0 CARGO_DENY_VERSION=0.18.4 /bin/sh -c cargo install cargo-audit --locked && cargo install cargo-license --locked && rm -rf /usr/local/cargo/registry # buildkit |
| RUN |3 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.15.0 CARGO_DENY_VERSION=0.18.4 /bin/sh -c curl -fsSL "https://github.com/mozilla/sccache/releases/download/v${SCCACHE_VERSION}/sccache-v${SCCACHE_VERSION}-x86_64-unknown-linux-musl.tar.gz" | tar -xz -C /tmp && mv "/tmp/sccache-v${SCCACHE_VERSION}-x86_64-unknown-linux-musl/sccache" /usr/local/bin/sccache && chmod +x /usr/local/bin/sccache && rm -rf "/tmp/sccache-v${SCCACHE_VERSION}-x86_64-unknown-linux-musl" && sccache --version # buildkit |
| RUN |3 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.15.0 CARGO_DENY_VERSION=0.18.4 /bin/sh -c curl -LsSf https://get.nexte.st/latest/linux | tar -xz -C /usr/local/cargo/bin && cargo nextest --version # buildkit |
| RUN |3 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.15.0 CARGO_DENY_VERSION=0.18.4 /bin/sh -c curl -fsSL "https://github.com/EmbarkStudios/cargo-deny/releases/download/${CARGO_DENY_VERSION}/cargo-deny-${CARGO_DENY_VERSION}-x86_64-unknown-linux-musl.tar.gz" | tar -xz -C /tmp && mv "/tmp/cargo-deny-${CARGO_DENY_VERSION}-x86_64-unknown-linux-musl/cargo-deny" /usr/local/cargo/bin/cargo-deny && chmod +x /usr/local/cargo/bin/cargo-deny && rm -rf "/tmp/cargo-deny-${CARGO_DENY_VERSION}-x86_64-unknown-linux-musl" && cargo-deny --version # buildkit |
| RUN |3 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.15.0 CARGO_DENY_VERSION=0.18.4 /bin/sh -c useradd --create-home --shell /bin/bash --uid 1000 builder && mkdir -p /workspace && chown builder:builder /workspace # buildkit |
| ENV CARGO_TERM_COLOR=always CARGO_INCREMENTAL=0 RUST_BACKTRACE=1 CI=true |
| WORKDIR /workspace |
| RUN |3 RUST_VERSION=1.94.0 SCCACHE_VERSION=0.15.0 CARGO_DENY_VERSION=0.18.4 /bin/sh -c rustc --version && cargo --version && capnp --version && sccache --version && cargo nextest --version && cargo-deny --version # buildkit |
| ARG RUST_VERSION=1.94.0 |
| LABEL org.opencontainers.image.title=IXT CI Base Image org.opencontainers.image.description=Rust 1.94.0 with build dependencies for IXT Framework CI org.opencontainers.image.vendor=IXT Project ixt.ci.rust_version=1.94.0 ixt.ci.image_type=base |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends python3 python3-dev python3-pip python3-venv && rm -rf /var/lib/apt/lists/* && apt-get clean # buildkit |
| RUN /bin/sh -c python3 -m venv /opt/venv && /opt/venv/bin/pip install --no-cache-dir pycapnp # buildkit |
| ENV PATH=/opt/venv/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| ARG GO_VERSION=1.23.8 |
| RUN |1 GO_VERSION=1.23.8 /bin/sh -c curl -fsSL "https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz" | tar -C /usr/local -xzf - && ln -s /usr/local/go/bin/go /usr/local/bin/go && ln -s /usr/local/go/bin/gofmt /usr/local/bin/gofmt # buildkit |
| ENV GOPATH=/workspace/go PATH=/usr/local/go/bin:/workspace/go/bin:/opt/venv/bin:/usr/local/cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| RUN |1 GO_VERSION=1.23.8 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends wget tzdata && wget -q https://dot.net/v1/dotnet-install.sh -O /tmp/dotnet-install.sh && chmod +x /tmp/dotnet-install.sh && /tmp/dotnet-install.sh --channel 9.0 --install-dir /usr/share/dotnet && ln -s /usr/share/dotnet/dotnet /usr/local/bin/dotnet && rm /tmp/dotnet-install.sh && rm -rf /var/lib/apt/lists/* && apt-get clean # buildkit |
| ENV DOTNET_CLI_TELEMETRY_OPTOUT=1 DOTNET_NOLOGO=1 DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 |
| RUN |1 GO_VERSION=1.23.8 /bin/sh -c apt-get update && apt-get install -y --no-install-recommends jq && rm -rf /var/lib/apt/lists/* && apt-get clean # buildkit |
| RUN |1 GO_VERSION=1.23.8 /bin/sh -c python3 --version && python3 -c "import capnp; print(f'pycapnp: {capnp.__version__}')" && node --version && npm --version && go version && dotnet --version && jq --version # buildkit |
| LABEL org.opencontainers.image.title=IXT CI SDK Image org.opencontainers.image.description=Full SDK testing image with Python, Node.js, Go, and .NET org.opencontainers.image.vendor=IXT Project ixt.ci.image_type=sdk |
Labels
| Key | Value |
|---|---|
| ixt.ci.image_type | sdk |
| ixt.ci.rust_version | 1.94.0 |
| org.opencontainers.image.description | Full SDK testing image with Python, Node.js, Go, and .NET |
| org.opencontainers.image.title | IXT CI SDK Image |
| org.opencontainers.image.vendor | IXT Project |