Block a user
agent-test (574ccfebdab232ab37cdfa9e5c064782dfa65861)
Published 2026-05-17 05:03:49 +02:00 by mat
Installation
docker pull git.mialemrobicnic.pl/mat/agent-test:574ccfebdab232ab37cdfa9e5c064782dfa65861sha256:cb8c2ff11a1c13dc7070f1ef179b73de477522baabc132c9048ed7848dfd402b
About this package
Base image with Claude Code CLI and srclight for agent containers
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=20260510.0.525573 |
| LABEL org.opencontainers.image.revision=b43ff00eac5d363450c033c3387cf566bc5650a0 |
| LABEL org.opencontainers.image.created=2026-05-10T00:08:50+00:00 |
| COPY /rootfs/ / # buildkit |
| RUN /bin/sh -c ldconfig && sed -i '/BUILD_ID/a VERSION_ID=20260510.0.525573' /etc/os-release && true # 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 python tmux && 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 curl -fsSL https://gh.io/copilot-install | bash # buildkit |
| COPY /build/srclight/target/release/srclight /usr/local/bin/srclight # buildkit |
| RUN /bin/sh -c chmod +x /usr/local/bin/srclight # 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 containers/base/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 AGENTS_MD=/workspace/AGENTS.md CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING=1 DISABLE_AUTOUPDATER=1 CLAUDE_CODE_DISABLE_NONESSENTIAL_TRAFFIC=1 |
| LABEL org.opencontainers.image.title=Agent Base Image org.opencontainers.image.description=Base image with Claude Code CLI and srclight for agent containers org.opencontainers.image.source=https://git.wrobel.cloud/agent/containers agent.type=base |
| ENTRYPOINT ["/agent/scripts/entrypoint.sh"] |
| CMD ["--help"] |
| ARG RUST_VERSION=1.94.1 |
| USER root |
| RUN |1 RUST_VERSION=1.94.1 /bin/sh -c echo "nameserver 8.8.8.8" > /etc/resolv.conf.override # buildkit |
| ENV DOCKER_OPTS=--dns 8.8.8.8 --dns 8.8.4.4 |
| RUN |1 RUST_VERSION=1.94.1 /bin/sh -c pacman -Syu --noconfirm && pacman -S --noconfirm --needed ca-certificates && pacman -Scc --noconfirm && update-ca-trust # buildkit |
| USER agent |
| ENV RUSTUP_HOME=/home/agent/.rustup CARGO_HOME=/home/agent/.cargo PATH=/home/agent/.cargo/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin |
| RUN |1 RUST_VERSION=1.94.1 /bin/sh -c curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain "${RUST_VERSION}" --profile minimal # buildkit |
| WORKDIR /workspace |
| COPY --chown=agent:agent ./agent-cli ./agent-cli # buildkit |
| COPY --chown=agent:agent ./srclight ./srclight # buildkit |
| COPY --chown=agent:agent ./plan-store ./plan-store # buildkit |
| COPY --chown=agent:agent ./templates ./templates # buildkit |
| COPY --chown=agent:agent ./containers ./containers # buildkit |
| WORKDIR /workspace/agent-cli |
| RUN |1 RUST_VERSION=1.94.1 /bin/sh -c cargo build --release && cargo test --no-run # buildkit |
| WORKDIR /workspace/srclight/srclight |
| RUN |1 RUST_VERSION=1.94.1 /bin/sh -c cargo build --release # buildkit |
| WORKDIR /workspace/agent-cli |
| RUN |1 RUST_VERSION=1.94.1 /bin/sh -c mkdir -p /home/agent/.config/agent-cli && mkdir -p /workspace/test-projects/project-a && mkdir -p /workspace/test-projects/project-b && echo '{"name": "project-a"}' > /workspace/test-projects/project-a/package.json && echo '[package]\nname = "project-b"' > /workspace/test-projects/project-b/Cargo.toml # buildkit |
| RUN |1 RUST_VERSION=1.94.1 /bin/sh -c printf '%s\n' '[projects]' 'paths = ["/workspace/test-projects"]' 'ignore = []' 'max_depth = 3' '' '[defaults]' 'agent = "claude"' 'session_prefix = "agent-"' '' '[agents.claude]' 'command = "claude"' > /home/agent/.config/agent-cli/config.toml # buildkit |
| WORKDIR /workspace/agent-cli |
| ENTRYPOINT [] |
| CMD ["/bin/bash"] |
Labels
| Key | Value |
|---|---|
| agent.type | base |
| 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-05-10T00:08:50+00:00 |
| org.opencontainers.image.description | Base image with Claude Code CLI and srclight for agent containers |
| 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 | b43ff00eac5d363450c033c3387cf566bc5650a0 |
| org.opencontainers.image.source | https://git.wrobel.cloud/agent/containers |
| org.opencontainers.image.title | Agent Base Image |
| org.opencontainers.image.url | https://gitlab.archlinux.org/archlinux/archlinux-docker/-/blob/master/README.md |
| org.opencontainers.image.version | 20260510.0.525573 |
Details
2026-05-17 05:03:49 +02:00
Versions (83)
View all
Container
0
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
2.0 GiB
16772ef56b90eaee61a8b17f285f2af403c1a606
2026-06-24
latest
2026-06-24
d950e7cfe65640611dba446ad91a0339e1f9e0c8
2026-06-16
7f65e9c514c5fa73f640b466fda4ed0a3c0ac4c9
2026-06-16
7f04dda4f62a3a0f24a16d6f01a60dce0afffd20
2026-06-15