From f368b1a4f28bd6b2ebdaca65b5e37b3171dd4f9f Mon Sep 17 00:00:00 2001 From: Peter Kurfer Date: Tue, 28 Feb 2023 21:22:04 +0100 Subject: [PATCH] fix(renovate): PATH not updated for Go --- renovate/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/renovate/Dockerfile b/renovate/Dockerfile index 857ca97..eb51f44 100644 --- a/renovate/Dockerfile +++ b/renovate/Dockerfile @@ -2,4 +2,7 @@ FROM docker.io/node:lts-alpine RUN npm install -g renovate && \ apk add -U --no-cache curl git && \ - curl -L https://go.dev/dl/go1.20.1.linux-amd64.tar.gz | tar -xvz -C /usr/local \ No newline at end of file + curl -L https://go.dev/dl/go1.20.1.linux-amd64.tar.gz | tar -xvz -C /usr/local + +ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/go/bin:/usr/local/go/bin \ + GOPATH=/go \ No newline at end of file