diff --git a/age/Dockerfile b/age/Dockerfile index b751ab2c08ec..58766dab2a8f 100644 --- a/age/Dockerfile +++ b/age/Dockerfile @@ -16,7 +16,7 @@ RUN test -n "${BUILD_VERSION}" \ && update-ca-certificates \ && git clone --depth 1 ${GIT_URL} --branch ${BUILD_VERSION} /go/src/github.com/FiloSottile/age \ && cd /go/src/github.com/FiloSottile/age \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && go build -o . -v -trimpath -ldflags="-s -w -X main.Version=${BUILD_VERSION}" filippo.io/age/cmd/... diff --git a/amass/Dockerfile b/amass/Dockerfile index 2ecad2062886..9a8880939ddc 100644 --- a/amass/Dockerfile +++ b/amass/Dockerfile @@ -15,7 +15,7 @@ RUN test -n "${BUILD_VERSION}" \ && curl -L "${ARCHIVE_URL}${BUILD_VERSION}.tar.gz" -o /tmp/amass.tar.gz \ && tar xzf /tmp/amass.tar.gz --strip 1 -C /go/src/github.com/owasp/amass \ && go get -u github.com/jackc/pgx/v5 google.golang.org/protobuf golang.org/x/net \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && go build -v -trimpath -ldflags="-s -w" ./cmd/amass diff --git a/cloudflared/Dockerfile b/cloudflared/Dockerfile index db182bf29c68..65278292fd39 100644 --- a/cloudflared/Dockerfile +++ b/cloudflared/Dockerfile @@ -17,7 +17,7 @@ RUN test -n "${BUILD_VERSION}" \ && tar xzf /tmp/cloudflared.tar.gz --strip 1 -C /go/src/github.com/cloudflare/cloudflared \ && go get -u github.com/cloudflare/circl github.com/go-jose/go-jose/v3 github.com/quic-go/quic-go google.golang.org/protobuf \ && go get -u github.com/coredns/coredns \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && go mod vendor \ && go build -o cloudflared -v -trimpath -ldflags="-s -w -X main.Version=${BUILD_VERSION}" ./cmd/cloudflared/ \ diff --git a/dnscrypt-proxy/Dockerfile b/dnscrypt-proxy/Dockerfile index 9c21b1dc4744..8426fee9a2e9 100644 --- a/dnscrypt-proxy/Dockerfile +++ b/dnscrypt-proxy/Dockerfile @@ -22,7 +22,7 @@ RUN test -n "${BUILD_VERSION}" \ && go mod download golang.org/x/sync \ && go get -u golang.org/x/sys golang.org/x/tools \ && go get -u google.golang.org/genproto \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go get -u ./... \ && go mod tidy \ && go mod vendor \ diff --git a/dnsx/Dockerfile b/dnsx/Dockerfile index f9936d68779a..116278d9b674 100644 --- a/dnsx/Dockerfile +++ b/dnsx/Dockerfile @@ -15,7 +15,7 @@ RUN test -n "${BUILD_VERSION}" \ && curl -L "${ARCHIVE_URL}${BUILD_VERSION}.tar.gz" -o /tmp/dnsx.tar.gz \ && tar xzf /tmp/dnsx.tar.gz --strip 1 -C /go/src/github.com/projectdiscovery/dnsx \ && go get -u github.com/quic-go/quic-go \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && go build -o dnsx -v -trimpath -ldflags="-s -w" cmd/dnsx/dnsx.go diff --git a/driftctl/Dockerfile b/driftctl/Dockerfile index 2042fed20551..60358f4e552b 100644 --- a/driftctl/Dockerfile +++ b/driftctl/Dockerfile @@ -18,8 +18,8 @@ RUN test -n "${BUILD_VERSION}" \ #&& tar xzf /tmp/driftctl.tar.gz --strip 1 -C /go/src/github.com/snyk/driftctl \ && git clone --depth 1 ${GIT_URL} /go/src/github.com/snyk/driftctl \ && cd /go/src/github.com/snyk/driftctl \ - #&& go get -u github.com/hashicorp/go-getter github.com/dgrijalva/jwt-go golang.org/x/net golang.org/x/crypto \ - && go get -u github.com/dgrijalva/jwt-go golang.org/x/crypto \ + #&& go get -u github.com/hashicorp/go-getter github.com/dgrijalva/jwt-go golang.org/x/net golang.org/x/crypto golang.org/x/net \ + && go get -u github.com/dgrijalva/jwt-go golang.org/x/crypto golang.org/x/net \ #&& go mod tidy \ && go build -v -trimpath -ldflags="-s -w -X github.com/snyk/driftctl/pkg/version.version=${BUILD_VERSION}" . diff --git a/dry/Dockerfile b/dry/Dockerfile index 726720788cbb..9992bb773849 100644 --- a/dry/Dockerfile +++ b/dry/Dockerfile @@ -18,7 +18,7 @@ RUN test -n "${BUILD_VERSION}" \ && go get -u github.com/docker/docker@v25.0.6 github.com/docker/cli@v25.0.6 \ #&& go get -u github.com/docker/distribution \ && go get -u golang.org/x/net \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ #&& go get -u all \ && go build -o dry-bin -v -trimpath -ldflags="-s -w" diff --git a/dsq/Dockerfile b/dsq/Dockerfile index 750bc71c4b53..e4413d4a1fd4 100644 --- a/dsq/Dockerfile +++ b/dsq/Dockerfile @@ -16,7 +16,7 @@ RUN test -n "${BUILD_VERSION}" \ && cd /go/src/github.com/multiprocessio/dsq \ && go get -u google.golang.org/protobuf golang.org/x/net \ && go get -u github.com/snowflakedb/gosnowflake \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && go build -v -trimpath -ldflags="-s -w" diff --git a/fq/Dockerfile b/fq/Dockerfile index 0625ef61daef..2cfc8e695fe0 100644 --- a/fq/Dockerfile +++ b/fq/Dockerfile @@ -17,7 +17,7 @@ RUN test -n "${BUILD_VERSION}" \ && update-ca-certificates \ && curl -L "${ARCHIVE_URL}${BUILD_VERSION}.tar.gz" -o /tmp/fq.tar.gz \ && tar xzf /tmp/fq.tar.gz --strip 1 -C /go/src/github.com/wader/fq \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go build -o fq -v -trimpath -ldflags="-s -w -X main.version=${BUILD_VERSION}" . # Validation check diff --git a/headscale/Dockerfile b/headscale/Dockerfile index d5e3615bafbe..4262910f30bf 100644 --- a/headscale/Dockerfile +++ b/headscale/Dockerfile @@ -15,7 +15,7 @@ RUN test -n "${BUILD_VERSION}" \ && curl -L "${ARCHIVE_URL}${BUILD_VERSION}.tar.gz" -o /tmp/headscale.tar.gz \ && tar xzf /tmp/headscale.tar.gz --strip 1 -C /go/src/github.com/juanfont/headscale \ && go get -u github.com/jackc/pgx/v5 github.com/go-jose/go-jose/v3 google.golang.org/grpc google.golang.org/genproto google.golang.org/protobuf \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && go build -o ./headscale -v -trimpath -ldflags="-s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=${BUILD_VERSION}" ./cmd/headscale diff --git a/httpie-go/Dockerfile b/httpie-go/Dockerfile index 120cc7369c08..4bc8e0a39d86 100644 --- a/httpie-go/Dockerfile +++ b/httpie-go/Dockerfile @@ -14,7 +14,7 @@ RUN test -n "${BUILD_VERSION}" \ && apk add --no-cache git gcc musl-dev \ && git clone --depth 1 ${GIT_URL} --branch ${BUILD_VERSION} /go/src/github.com/nojima/httpie-go \ && cd /go/src/github.com/nojima/httpie-go \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && go build -v -trimpath -ldflags="-s -w" ./cmd/ht diff --git a/httpx/Dockerfile b/httpx/Dockerfile index a73c7bd10c40..3cc729b21ca7 100644 --- a/httpx/Dockerfile +++ b/httpx/Dockerfile @@ -15,7 +15,7 @@ RUN test -n "${BUILD_VERSION}" \ && curl -L "${ARCHIVE_URL}${BUILD_VERSION}.tar.gz" -o /tmp/httpx.tar.gz \ && tar xzf /tmp/httpx.tar.gz --strip 1 -C /go/src/github.com/projectdiscovery/httpx \ && go get -u github.com/quic-go/quic-go \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && go build -o httpx -v -trimpath -ldflags="-s -w" cmd/httpx/httpx.go diff --git a/lego/Dockerfile b/lego/Dockerfile index 9f16e3e30812..f99e0be0d6eb 100644 --- a/lego/Dockerfile +++ b/lego/Dockerfile @@ -17,7 +17,7 @@ RUN test -n "${BUILD_VERSION}" \ && curl -L "${ARCHIVE_URL}${BUILD_VERSION}.tar.gz" -o /tmp/lego.tar.gz \ && tar xzf /tmp/lego.tar.gz --strip 1 -C /go/src/github.com/go-acme/lego \ && go get -u google.golang.org/grpc google.golang.org/protobuf \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && make build \ && strip /go/src/github.com/go-acme/lego/dist/lego \ diff --git a/logmepwn/Dockerfile b/logmepwn/Dockerfile index 5b063316ca82..3164a2cc2765 100644 --- a/logmepwn/Dockerfile +++ b/logmepwn/Dockerfile @@ -17,7 +17,7 @@ RUN test -n "${BUILD_VERSION}" \ && update-ca-certificates \ && curl -L "${ARCHIVE_URL}${BUILD_VERSION}.tar.gz" -o /tmp/logmepwn.tar.gz \ && tar xzf /tmp/logmepwn.tar.gz --strip 1 -C /go/src/github.com/0xInfection/logmepwn \ - && go get -u golang.org/x/crypto github.com/valyala/fasthttp \ + && go get -u golang.org/x/crypto golang.org/x/net github.com/valyala/fasthttp \ && go build -o lmp -v -trimpath -ldflags="-s -w" . # Validation check diff --git a/ntfy/Dockerfile b/ntfy/Dockerfile index c949fffb5afe..d377e57ce128 100644 --- a/ntfy/Dockerfile +++ b/ntfy/Dockerfile @@ -22,7 +22,7 @@ RUN test -n "${BUILD_VERSION}" \ && mkdir server/site \ && touch server/site/dummy \ && go get -u golang.org/x/net \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go get -u github.com/golang-jwt/jwt/v4 \ && go mod tidy \ && CGO_CFLAGS="-D_LARGEFILE64_SOURCE" go build -o ntfy -v -trimpath -ldflags="-s -w -X main.version=${BUILD_VERSION}" . diff --git a/opentofu/Dockerfile b/opentofu/Dockerfile index 22a77eec7f5f..82e0a74bfe97 100644 --- a/opentofu/Dockerfile +++ b/opentofu/Dockerfile @@ -21,7 +21,7 @@ RUN test -n "${BUILD_VERSION}" \ && cd /go/src/github.com/opentofu/opentofu \ #&& go get -u github.com/hashicorp/go-getter github.com/cloudflare/circl google.golang.org/protobuf golang.org/x/net \ #&& go get -u go.opentelemetry.io/otel/sdk/trace \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ #&& go mod tidy \ && go generate ./... \ && go run ./tools/protobuf-compile . \ diff --git a/rclone/Dockerfile b/rclone/Dockerfile index 1e4cb75aff9d..cf594f6ecc29 100644 --- a/rclone/Dockerfile +++ b/rclone/Dockerfile @@ -15,7 +15,7 @@ RUN test -n "${BUILD_VERSION}" \ && curl -L "${ARCHIVE_URL}${BUILD_VERSION}.tar.gz" -o /tmp/rclone.tar.gz \ && tar xzf /tmp/rclone.tar.gz --strip 1 -C /go/src/github.com/rclone/rclone \ && go get -u golang.org/x/net \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && go build -o rclone -v -trimpath -ldflags="-s -w" diff --git a/rdap/Dockerfile b/rdap/Dockerfile index 198f0d59f5cd..915523bec36f 100644 --- a/rdap/Dockerfile +++ b/rdap/Dockerfile @@ -14,7 +14,7 @@ RUN test -n "${BUILD_VERSION}" \ && apk add --no-cache git ca-certificates \ && git clone --depth 1 ${GIT_URL} /go/src/github.com/openrdap/rdap \ && cd /go/src/github.com/openrdap/rdap \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go get -u \ && go build -o rdap -v -trimpath -ldflags="-s -w" ./cmd/rdap diff --git a/subfinder/Dockerfile b/subfinder/Dockerfile index e024985a479d..2ec9ddefa4df 100644 --- a/subfinder/Dockerfile +++ b/subfinder/Dockerfile @@ -16,7 +16,7 @@ RUN test -n "${BUILD_VERSION}" \ && tar xzf /tmp/subfinder.tar.gz --strip 1 -C /go/src/github.com/projectdiscovery/subfinder \ && cd v2 \ && go get -u github.com/quic-go/quic-go \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && go build -o subfinder -v -trimpath -ldflags="-s -w" cmd/subfinder/main.go diff --git a/tailscale/Dockerfile b/tailscale/Dockerfile index c66530293c49..f05725dec4b4 100644 --- a/tailscale/Dockerfile +++ b/tailscale/Dockerfile @@ -18,7 +18,7 @@ RUN test -n "${BUILD_VERSION}" \ && curl -L "${ARCHIVE_URL}${BUILD_VERSION}.tar.gz" -o /tmp/tailscale.tar.gz \ && tar xzf /tmp/tailscale.tar.gz --strip 1 -C /go/src/github.com/tailscale/tailscale \ && go get -u golang.org/x/net \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ && go mod tidy \ && go build -v -trimpath -tags xversion,ts_include_cli -ldflags="-s -w -X tailscale.com/version.Short=${BUILD_VERSION}" tailscale.com/cmd/tailscaled diff --git a/terraform/Dockerfile b/terraform/Dockerfile index 0448416fa549..bba50f355bad 100644 --- a/terraform/Dockerfile +++ b/terraform/Dockerfile @@ -18,7 +18,7 @@ RUN test -n "${BUILD_VERSION}" \ && tar xzf /tmp/terraform.tar.gz --strip 1 -C /go/src/github.com/hashicorp/terraform \ #&& go get -u github.com/hashicorp/go-getter github.com/cloudflare/circl google.golang.org/protobuf golang.org/x/net \ #&& go get -u go.opentelemetry.io/otel/sdk/trace \ - && go get -u golang.org/x/crypto \ + && go get -u golang.org/x/crypto golang.org/x/net \ #&& go mod tidy \ && go build -v -trimpath -ldflags="-s -w" \ && cp terraform /go/bin/terraform \