mirror of
https://github.com/projectdiscovery/subfinder
synced 2026-06-21 14:05:24 +00:00
47bb7a0a9b
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>
12 lines
333 B
Docker
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"]
|