mirror of
https://github.com/projectdiscovery/nuclei
synced 2026-06-08 16:50:47 +00:00
a13ea39461
Signed-off-by: Dwi Siswanto <git@dw1.io>
17 lines
288 B
Docker
17 lines
288 B
Docker
# Build
|
|
FROM golang:1.24-alpine AS builder
|
|
|
|
RUN apk add build-base
|
|
WORKDIR /app
|
|
COPY . /app
|
|
RUN make verify
|
|
RUN make build
|
|
|
|
# Release
|
|
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache bind-tools chromium ca-certificates
|
|
COPY --from=builder /app/bin/nuclei /usr/local/bin/
|
|
|
|
ENTRYPOINT ["nuclei"]
|