Files
container-agent-dev/Dockerfile
T
unkinben 1d7b1be7b8
ci/woodpecker/pr/build Pipeline was successful
revert Dockerfile FROM to gitea agent-base; keep push-target switch
The buildkit builder in the k8s runner cannot pull FROM the artifactapi
registry (internal CA is not trusted). Keep the base-image FROM on gitea;
only the push target moves to artifactapi.

Claude-Session: https://claude.ai/code/session_015ur3i7D2azsMAWTSVABApv
2026-07-30 00:50:54 +10:00

27 lines
545 B
Docker

FROM git.unkin.net/unkin/agent-base:latest
USER root
RUN dnf install -y \
golang \
nodejs \
npm \
make \
ripgrep \
tea \
tflint \
&& dnf clean all
ENV UV_TOOL_BIN_DIR=/usr/local/bin
ENV UV_TOOL_DIR=/usr/local/share/uv/tools
RUN uv tool install basedpyright \
&& uv tool install python-lsp-server \
&& uv tool install ty \
&& uv tool install ruff
RUN GOBIN=/usr/local/bin GOTOOLCHAIN=auto go install golang.org/x/tools/gopls@latest \
&& rm -rf /root/go
USER agent