mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-24 20:25:29 +00:00
* dev version update * Adding race condition test (#1357) * Removing linux/arm - Missing chrome package (#1355) * Trim paths info from released binary (#1356) * chore(deps): bump golang from 1.17.4-alpine to 1.17.5-alpine (#1363) Bumps golang from 1.17.4-alpine to 1.17.5-alpine. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix: updating default interactsh server to use Co-authored-by: Mzack9999 <mzack9999@protonmail.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
8 lines
273 B
Docker
8 lines
273 B
Docker
FROM golang:1.17.5-alpine as build-env
|
|
RUN go install -v github.com/projectdiscovery/nuclei/v2/cmd/nuclei@latest
|
|
|
|
FROM alpine:3.15.0
|
|
RUN apk add --no-cache bind-tools ca-certificates chromium
|
|
COPY --from=build-env /go/bin/nuclei /usr/local/bin/nuclei
|
|
ENTRYPOINT ["nuclei"]
|