Files
grafana/devenv/docker/blocks/stateful_webhook/Dockerfile
T
Mariell Hoversholm 9df94718ab [main] Go: Bump to 1.24.2 (#103521)
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
2025-04-08 17:12:30 +02:00

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" ]