Initial scaffold: base agent container image
ci/woodpecker/tag/docker Pipeline failed

This commit is contained in:
2026-06-08 22:52:12 +10:00
parent 6233e7511a
commit 7a86b3b487
6 changed files with 231 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM git.unkin.net/unkin/almalinux9-base:latest
RUN dnf install -y \
git \
git-lfs \
jq \
curl \
claude-code \
&& dnf clean all
RUN useradd -m -s /bin/bash agent
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
USER agent
WORKDIR /home/agent
ENTRYPOINT ["/entrypoint.sh"]