You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reproduces with this Dockerfile, just run docker build .
FROM golang:1.21
ENV GOTOOLCHAIN=go1.20
RUN git clone https://github.com/M0NsTeRRR/alertmanager-webhook-free.git \
&& cd alertmanager-webhook-free \
&& go get github.com/prometheus/alertmanager@v0.26.0 \
&& go get
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?go env
OutputWhat did you do?
Reproduces with this Dockerfile, just run
docker build .
What did you expect to see?
No errors
What did you see instead?
The final
go get
fails with this error.It runs without error if I:
GOTOOLCHAIN
FROM golang:1.20
It seems the use of
GOTOOLCHAIN
is creating some kind of path confusion.The text was updated successfully, but these errors were encountered: