9df94718ab
Go: Bump to 1.24.2 It is not likely we are actually affected by the CVEs, but updating proactively is not a bad idea nonetheless. Fixes: CVE-2025-22871 Fixes: https://github.com/grafana/grafana-operator-experience-squad/issues/1311
13 lines
174 B
Docker
13 lines
174 B
Docker
FROM golang:1.24.2
|
|
|
|
ADD main.go /go/src/webhook/main.go
|
|
|
|
WORKDIR /go/src/webhook
|
|
|
|
RUN mkdir /tmp/logs
|
|
RUN go build -o /bin main.go
|
|
|
|
ENV PORT=8080
|
|
|
|
ENTRYPOINT [ "/bin/main" ]
|