Codebase list subfinder / 6a9f9bc3-7093-4c70-ad0e-17c1eb1e5d43/upstream Dockerfile
6a9f9bc3-7093-4c70-ad0e-17c1eb1e5d43/upstream

Tree @6a9f9bc3-7093-4c70-ad0e-17c1eb1e5d43/upstream (Download .tar.gz)

Dockerfile @6a9f9bc3-7093-4c70-ad0e-17c1eb1e5d43/upstreamraw · history · blame

# Build Container
FROM golang:1.13.4-alpine3.10 AS build-env
MAINTAINER Ice3man ([email protected])
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

# Install
RUN go get -u github.com/projectdiscovery/subfinder/v2/cmd/subfinder

ENTRYPOINT ["subfinder"]