diff --git a/Dockerfile b/Dockerfile index 7daaf57cc..227a297b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.25.4 AS build-env +FROM golang:1.25.5 AS build-env WORKDIR /usr/local/go/src/github.com/SpectoLabs/hoverfly COPY . /usr/local/go/src/github.com/SpectoLabs/hoverfly @@ -7,7 +7,7 @@ ARG TARGETOS=linux ARG TARGETARCH RUN cd core/cmd/hoverfly \ && CGO_ENABLED=0 GOOS=${TARGETOS} GOARCH=${TARGETARCH} \ - go install -ldflags "-s -w" + go install -ldflags "-s -w" # Final minimal image based on Alpine, without running apk to avoid QEMU trigger issues FROM alpine:3.20 diff --git a/go.mod b/go.mod index 72eb836f2..b1c76dd43 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/SpectoLabs/hoverfly -go 1.25.4 +go 1.25.5 require ( github.com/ChrisTrenkamp/xsel v0.9.16