Files
projectdiscovery-httpx/Dockerfile
T
2021-10-04 17:18:23 +05:30

11 lines
308 B
Docker

FROM golang:1.17.1-alpine AS builder
RUN apk add --no-cache git
RUN go install -v github.com/projectdiscovery/httpx/cmd/httpx@latest
FROM alpine:3.14
RUN apk -U upgrade --no-cache \
&& apk add --no-cache bind-tools ca-certificates
COPY --from=builder /go/bin/httpx /usr/local/bin/
ENTRYPOINT ["httpx"]