forked from projectdiscovery/naabu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6d8c2e8
commit 91c252a
Showing
3 changed files
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
FROM golang:1.16.5-alpine AS builder | ||
FROM golang:1.17.0-alpine AS builder | ||
RUN apk add build-base libpcap-dev | ||
RUN GO111MODULE=on go get -v github.com/projectdiscovery/naabu/v2/cmd/naabu | ||
|
||
FROM alpine | ||
FROM alpine:3.14 | ||
RUN apk add nmap libpcap-dev bind-tools ca-certificates | ||
COPY --from=builder /go/bin/naabu /usr/local/bin/naabu | ||
ENTRYPOINT ["naabu"] |