mirror of
https://github.com/projectdiscovery/subfinder
synced 2026-06-21 14:05:24 +00:00
032c8ec920
Bumps golang from 1.16-alpine to 1.16.6-alpine. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
337 B
Docker
12 lines
337 B
Docker
# Build
|
|
FROM golang:1.16.6-alpine AS build-env
|
|
RUN GO111MODULE=on go get -v github.com/projectdiscovery/subfinder/v2/cmd/subfinder
|
|
|
|
# Release
|
|
FROM alpine:latest
|
|
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"]
|