diff --git a/cli/command/image/build/context.go b/cli/command/image/build/context.go index 5344626e05..ada5fa3ecf 100644 --- a/cli/command/image/build/context.go +++ b/cli/command/image/build/context.go @@ -232,6 +232,7 @@ func GetContextFromURL(out io.Writer, remoteURL, dockerfileName string) (io.Read // getWithStatusError does an http.Get() and returns an error if the // status code is 4xx or 5xx. func getWithStatusError(url string) (resp *http.Response, err error) { + // #nosec G107 if resp, err = http.Get(url); err != nil { return nil, err }