mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-18 05:05:23 +00:00
Bumps alpine from 3.15.1 to 3.15.2. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
8 lines
273 B
Docker
8 lines
273 B
Docker
FROM golang:1.18.0-alpine as build-env
|
|
RUN go install -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest
|
|
|
|
FROM alpine:3.15.2
|
|
RUN apk add --no-cache bind-tools ca-certificates chromium
|
|
COPY --from=build-env /go/bin/nuclei /usr/local/bin/nuclei
|
|
ENTRYPOINT ["nuclei"]
|