15 lines
367 B
Docker
15 lines
367 B
Docker
# Build Container
|
|
FROM golang:1.11.4-alpine3.7 AS build-env
|
|
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
|
|
|
|
# Cache the dependencies early
|
|
COPY Gopkg.toml Gopkg.lock ./
|
|
RUN dep ensure -vendor-only -v
|
|
|
|
# Install
|
|
RUN go get -u github.com/subfinder/subfinder
|
|
|
|
ENTRYPOINT ["subfinder"]
|