Files
container-agent-dev/Dockerfile
T
unkinben b5399343cd
ci/woodpecker/pr/build Pipeline failed
ci: push images to artifactapi registry instead of gitea
Hard switch of the docker push target from the Gitea registry to the
artifactapi local docker registry (docker-internal); the Gitea VM and its
registry are being retired. Drops the droneci/DRONECI_PASSWORD creds since
artifactapi accepts unauthenticated in-cluster pushes. Also repoints the Dockerfile FROM agent-base base image.

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

27 lines
575 B
Docker

FROM artifactapi.k8s.syd1.au.unkin.net/docker-internal/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