readme update / docker update

master
team-projectdiscovery 2020-12-22 00:51:44 +05:30
parent 2c6fe5f248
commit 5c1c6231bb
2 changed files with 3 additions and 3 deletions

View File

@ -2,8 +2,8 @@
FROM golang:1.13.4-alpine3.10 AS build-env FROM golang:1.13.4-alpine3.10 AS build-env
MAINTAINER Ice3man (nizamul@projectdiscovery.io) MAINTAINER Ice3man (nizamul@projectdiscovery.io)
RUN apk add --no-cache --upgrade git openssh-client ca-certificates RUN apk add --no-cache --upgrade git openssh-client ca-certificates
RUN go get -u github.com/golang/dep/cmd/dep RUN GO111MODULE=on go get -v github.com/golang/dep/cmd/dep
RUN go get -u github.com/projectdiscovery/subfinder/v2/cmd/subfinder RUN GO111MODULE=on go get -v github.com/projectdiscovery/v2/cmd/subfinder
FROM alpine:latest FROM alpine:latest
COPY --from=build-env /go/bin/subfinder /usr/local/bin/ COPY --from=build-env /go/bin/subfinder /usr/local/bin/

View File

@ -101,7 +101,7 @@ The installation is easy. You can download the pre-built binaries for different
subfinder requires **go1.14+** to install successfully. Run the following command to get the repo - subfinder requires **go1.14+** to install successfully. Run the following command to get the repo -
```sh ```sh
GO111MODULE=on go get -u -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder GO111MODULE=on go get -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder
``` ```
### From Github ### From Github