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
When trying to download grafana v11.4.0, we are actually getting v11.3.1.
Docker logs show that the correct version is being pulled, but when running grafana -v we get grafana version 11.3.1.
I have also confirmed that this happens for any available version above 11.3.1.
Sample Dockerfile for repo:
FROM cgr.dev/chainguard/wolfi-base
RUN apk add grafana # This will also behave the same when explicitly asking for version 11.4 (i.e grafana-11.4)
CMD ["grafana", "-v"]
When building the image you see the correct install log: (4/4) Installing grafana-11.4 (11.4.0-r3)
However when running the container you get: grafana version 11.3.1
The text was updated successfully, but these errors were encountered:
hey, thanks for raising this. This is likely an issue for upstream, we build from grafana published tags.
If you clone the 11.4.0 and run the following you'll see the following:
$ go run build.go build
Version: 11.3.1, Linux Version: 11.3.1, Package Iteration: 1736366450
building binaries build
building grafana ./pkg/cmd/grafana
You can also invoke make build or make build-go for this.
I'll probably file an upstream issue about this version mismatch.
I can assure you that you're running compiled code from 11.4.0 tag it's just that the version that's being printed is wrong in this case.
When trying to download grafana v11.4.0, we are actually getting v11.3.1.
Docker logs show that the correct version is being pulled, but when running
grafana -v
we getgrafana version 11.3.1
.I have also confirmed that this happens for any available version above
11.3.1
.Sample Dockerfile for repo:
When building the image you see the correct install log:
(4/4) Installing grafana-11.4 (11.4.0-r3)
However when running the container you get:
grafana version 11.3.1
The text was updated successfully, but these errors were encountered: