feat(go): install npm dev tools
Build containers / changes (push) Successful in 3s
Build containers / base-image (push) Successful in 42s
Build containers / dependent-images (infra) (push) Successful in 9s
Build containers / dependent-images (php) (push) Failing after 47s
Build containers / dependent-images (go) (push) Failing after 36s

This commit is contained in:
2026-09-02 21:16:02 +02:00
parent f0534c393b
commit 2cf9cb89a1
+5
View File
@@ -11,4 +11,9 @@ RUN GO_VERSION=$(curl -sL "https://go.dev/VERSION?m=text" | head -n 1 | tr -d '\
GOBIN=/usr/local/bin /usr/local/go/bin/go install golang.org/x/tools/cmd/goimports@latest && \
GOBIN=/usr/local/bin /usr/local/go/bin/go install github.com/go-delve/delve/cmd/dlv@latest
RUN curl -fsSL https://deb.nodesource.com/setup_current.x | bash - && \
apt-get install -y nodejs && \
npm install -g typescript typescript-language-server @tailwindcss/language-server && \
apt-get clean && rm -rf /var/lib/apt/lists/*
USER user