Files
projectdiscovery-subfinder/Dockerfile
T
dependabot[bot] 47bb7a0a9b chore(deps): bump golang from 1.17-alpine to 1.18.0-alpine
Bumps golang from 1.17-alpine to 1.18.0-alpine.

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-03-21 14:05:04 +00:00

12 lines
333 B
Docker

# Build
FROM golang:1.18.0-alpine AS build-env
RUN go install -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder@latest
# Release
FROM alpine:3.15.0
RUN apk -U upgrade --no-cache \
&& apk add --no-cache bind-tools ca-certificates
COPY --from=build-env /go/bin/subfinder /usr/local/bin/subfinder
ENTRYPOINT ["subfinder"]