From c1bd37a4d0de1288b0874b8e5ef40967df4cc08f Mon Sep 17 00:00:00 2001 From: Denis Bryzgalov Date: Wed, 15 Apr 2026 13:37:51 +0300 Subject: [PATCH] docs: update Dockerfile example to use golang:bookworm --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d3d54e4..a8ebaf5 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ go build -o cloudsql-exporter . Example multi-stage Dockerfile that builds from source: ```dockerfile -FROM golang:bullseye AS builder +FROM golang:bookworm AS builder WORKDIR /build ENV CGO_ENABLED=0 RUN git clone --branch --single-branch https://github.com/flashadmin/cloudsql-exporter.git \