Add dev tooling: LSPs, linters, and CLI tools
ci/woodpecker/pr/build Pipeline failed

Install basedpyright, python-lsp-server, ty, ruff via uv tool,
gopls via go install, and tea/tflint via dnf. Remove unused
python3/python3-pip packages.
This commit is contained in:
2026-06-17 19:39:33 +10:00
parent fe704969b5
commit 3deaff2395
+13 -2
View File
@@ -6,10 +6,21 @@ RUN dnf install -y \
golang \
nodejs \
npm \
python3 \
python3-pip \
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 go install golang.org/x/tools/gopls@latest \
&& rm -rf /root/go
USER agent