From e778c1ff16a0bff7c4e079f3facdb8da9d4a5a2d Mon Sep 17 00:00:00 2001 From: Marcin Morawski Date: Thu, 27 Jun 2024 10:17:20 +0200 Subject: [PATCH] fix docker build error: cannot install geoipupdate --- build/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Dockerfile b/build/Dockerfile index 7af86b3..b28de95 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -47,7 +47,7 @@ FROM golang:alpine AS golang RUN apk add --no-cache git RUN go install github.com/ssllabs/ssllabs-scan@latest -RUN go install github.com/maxmind/geoipupdate/cmd/geoipupdate@latest +RUN go install github.com/maxmind/geoipupdate/v7/cmd/geoipupdate@latest RUN go install github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest FROM drwetter/testssl.sh:3.0 AS testssl