diff --git a/addons/processors/sql-processor/Dockerfile b/addons/processors/sql-processor/Dockerfile index 4e26a35..f88ed92 100644 --- a/addons/processors/sql-processor/Dockerfile +++ b/addons/processors/sql-processor/Dockerfile @@ -13,7 +13,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.24-alpine AS build +ARG GO_VERSION=1.25.2 +FROM golang:${GO_VERSION}-alpine@sha256:06cdd34bd531b810650e47762c01e025eb9b1c7eadd191553b91c9f2d549fae8 AS build WORKDIR /src COPY go.mod go.sum ./ RUN --mount=type=cache,target=/go/pkg/mod \