mirror of
https://github.com/projectdiscovery/httpx
synced 2026-06-08 16:50:17 +00:00
e7d4f46406
Bumps alpine from 3.15.2 to 3.15.3. --- updated-dependencies: - dependency-name: alpine dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
11 lines
310 B
Docker
11 lines
310 B
Docker
FROM golang:1.18.0-alpine AS builder
|
|
RUN apk add --no-cache git
|
|
RUN go install -v github.com/projectdiscovery/httpx/cmd/httpx@latest
|
|
|
|
FROM alpine:3.15.3
|
|
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"]
|