subfinder/Dockerfile

16 lines
438 B
Docker
Raw Normal View History

# Build Container
2019-12-05 11:19:11 +00:00
FROM golang:1.13.4-alpine3.10 AS build-env
MAINTAINER Ice3man (nizamul@projectdiscovery.io)
RUN apk add --no-cache --upgrade git openssh-client ca-certificates
RUN go get -u github.com/golang/dep/cmd/dep
WORKDIR /go/src/app
2018-04-17 06:20:04 +00:00
# Cache the dependencies early
COPY Gopkg.toml Gopkg.lock ./
RUN dep ensure -vendor-only -v
2018-04-17 06:20:04 +00:00
2019-02-26 09:16:47 +00:00
# Install
2019-12-05 11:19:11 +00:00
RUN go get -u github.com/projectdiscovery/subfinder/cmd/subfinder
2018-04-17 06:20:04 +00:00
2019-02-26 09:16:47 +00:00
ENTRYPOINT ["subfinder"]