diff --git a/Dockerfile.windows b/Dockerfile.windows index 4a1246656c..143b6f0820 100644 --- a/Dockerfile.windows +++ b/Dockerfile.windows @@ -90,7 +90,10 @@ RUN Start-Process msiexec.exe ` # Run these in a directory with a go.mod file so that "go get" doesn't need # a working Git installation. WORKDIR /goget -RUN go install github.com/google/googet/v2/goopack@latest; + +# @latest has an issue with path separators, so pin to an older version for now. +# https://github.com/google/googet/issues/83#issuecomment-2536975624 +RUN go install github.com/google/googet/v2/goopack@v2.18.4; ############################################################################### # Build fluent-bit