Block a user
agent-rust-coder (959362c7b98ad7fd250f4bb6364827dcea6a5590)
Published 2026-02-09 22:26:22 +01:00 by mat
Installation
docker pull git.mialemrobicnic.pl/mat/agent-rust-coder:959362c7b98ad7fd250f4bb6364827dcea6a5590sha256:5a8ce81f3058d6fed5c056de680cb8483a42014ee8cb3627c54d345a2c2f3618
About this package
Rust development agent with full toolchain
Image Layers
| LABEL org.opencontainers.image.title=Arch Linux base Image |
| LABEL org.opencontainers.image.description=Official containerd image of Arch Linux, a simple, lightweight Linux distribution aimed for flexibility. |
| LABEL org.opencontainers.image.authors=Santiago Torres-Arias <santiago@archlinux.org> (@SantiagoTorres), Christian Rebischke <Chris.Rebischke@archlinux.org> (@shibumi), Justin Kromlinger <hashworks@archlinux.org> (@hashworks) |
| LABEL org.opencontainers.image.url=https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/master/README.md |
| LABEL org.opencontainers.image.documentation=https://wiki.archlinux.org/title/Docker#Arch_Linux |
| LABEL org.opencontainers.image.source=https://gitlab.archlinux.org/archlinux/archlinux-docker |
| LABEL org.opencontainers.image.licenses=GPL-3.0-or-later |
| LABEL org.opencontainers.image.version=20260201.0.486523 |
| LABEL org.opencontainers.image.revision=0d7c4c0017584f9bcb495105cc412d6575f04564 |
| LABEL org.opencontainers.image.created=2026-02-01T00:07:02+00:00 |
| COPY /rootfs/ / # buildkit |
| RUN /bin/sh -c ldconfig && sed -i '/BUILD_ID/a VERSION_ID=20260201.0.486523' /etc/os-release # buildkit |
| ENV LANG=C.UTF-8 |
| CMD ["/usr/bin/bash"] |
| RUN /bin/sh -c pacman -Syu --noconfirm && pacman -S --noconfirm --needed base-devel git curl jq ripgrep fd docker docker-compose bash && pacman -Scc --noconfirm && rm -rf /var/cache/pacman/pkg/* # buildkit |
| RUN /bin/sh -c curl -fsSL https://claude.ai/install.sh | bash && CLAUDE_BIN=$(readlink -f /root/.local/bin/claude) && cp "$CLAUDE_BIN" /usr/local/bin/claude && chmod +x /usr/local/bin/claude # buildkit |
| RUN /bin/sh -c groupadd -g 1000 agent && useradd -u 1000 -g agent -G docker -m agent # buildkit |
| RUN /bin/sh -c mkdir -p /agent/scripts /agent/skills /workspace && chown -R agent:agent /agent /workspace # buildkit |
| COPY --chown=agent:agent scripts/entrypoint.sh /agent/scripts/ # buildkit |
| RUN /bin/sh -c chmod +x /agent/scripts/entrypoint.sh # buildkit |
| USER agent |
| WORKDIR /workspace |
| ENV AGENT_TYPE=base WORKSPACE_PATH=/workspace CLAUDE_MODEL=claude-haiku-4-5 AGENTS_MD=/agent/AGENTS.md |
| LABEL org.opencontainers.image.title=Agent Base Image org.opencontainers.image.description=Base image with Claude Code CLI for agent containers org.opencontainers.image.source=https://git.wrobel.cloud/agent/containers agent.type=base |
| ENTRYPOINT ["/agent/scripts/entrypoint.sh"] |
| CMD ["--help"] |
| USER root |
| RUN /bin/sh -c pacman -Syu --noconfirm && pacman -S --noconfirm --needed rust rust-src && pacman -Scc --noconfirm && rm -rf /var/cache/pacman/pkg/* # buildkit |
| USER agent |
| ENV CARGO_HOME=/home/agent/.cargo PATH=/home/agent/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| RUN /bin/sh -c mkdir -p /home/agent/.cargo/bin && curl -LsSf https://get.nexte.st/latest/linux | tar zxf - -C /home/agent/.cargo/bin && cargo install cargo-watch # buildkit |
| WORKDIR /tmp/cache-crates |
| RUN /bin/sh -c cargo init . && printf 'serde = { version = "1", features = ["derive"] }\n' >> Cargo.toml && printf 'serde_json = "1"\n' >> Cargo.toml && printf 'tokio = { version = "1", features = ["full"] }\n' >> Cargo.toml && printf 'anyhow = "1"\n' >> Cargo.toml && printf 'thiserror = "1"\n' >> Cargo.toml && printf 'clap = { version = "4", features = ["derive"] }\n' >> Cargo.toml && printf 'tracing = "0.1"\n' >> Cargo.toml && printf 'tracing-subscriber = "0.3"\n' >> Cargo.toml && printf 'config = "0.14"\n' >> Cargo.toml && printf 'chrono = { version = "0.4", features = ["serde"] }\n' >> Cargo.toml && printf 'uuid = { version = "1", features = ["v4", "serde"] }\n' >> Cargo.toml && cargo build --release && rm -rf /tmp/cache-crates # buildkit |
| WORKDIR /workspace |
| ENV AGENT_TYPE=rust-coder CLAUDE_MODEL=claude-sonnet-4-5 |
| LABEL org.opencontainers.image.title=Rust Coder Agent org.opencontainers.image.description=Rust development agent with full toolchain agent.type=rust-coder agent.model=claude-sonnet-4-5 agent.capabilities.docker_socket=true agent.capabilities.can_run_compose=true |
Labels
| Key | Value |
|---|---|
| agent.capabilities.can_run_compose | true |
| agent.capabilities.docker_socket | true |
| agent.model | claude-sonnet-4-5 |
| agent.type | rust-coder |
| org.opencontainers.image.authors | Santiago Torres-Arias <santiago@archlinux.org> (@SantiagoTorres), Christian Rebischke <Chris.Rebischke@archlinux.org> (@shibumi), Justin Kromlinger <hashworks@archlinux.org> (@hashworks) |
| org.opencontainers.image.created | 2026-02-01T00:07:02+00:00 |
| org.opencontainers.image.description | Rust development agent with full toolchain |
| org.opencontainers.image.documentation | https://wiki.archlinux.org/title/Docker#Arch_Linux |
| org.opencontainers.image.licenses | GPL-3.0-or-later |
| org.opencontainers.image.revision | 0d7c4c0017584f9bcb495105cc412d6575f04564 |
| org.opencontainers.image.source | https://git.wrobel.cloud/agent/containers |
| org.opencontainers.image.title | Rust Coder Agent |
| org.opencontainers.image.url | https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/master/README.md |
| org.opencontainers.image.version | 20260201.0.486523 |
Details
2026-02-09 22:26:22 +01:00
Versions (5)
View all
Container
1
OCI / Docker
linux/amd64
Santiago Torres-Arias <santiago@archlinux.org> (@SantiagoTorres), Christian Rebischke <Chris.Rebischke@archlinux.org> (@shibumi), Justin Kromlinger <hashworks@archlinux.org> (@hashworks)
GPL-3.0-or-later
780 MiB
4f85cbbae05b63640fb58b741007c87e8c84d8e6
2026-02-16
latest
2026-02-16
1712da106f9884ad9e82c8d8e60688238c49343e
2026-02-09
959362c7b98ad7fd250f4bb6364827dcea6a5590
2026-02-09
842113b8396ee2fff28faf36f249ef6434a3185a
2026-02-08