mirror of
https://github.com/projectdiscovery/httpx
synced 2026-06-08 16:50:17 +00:00
596936b7ee
Bumps golang from 1.16.7-alpine to 1.17.0-alpine. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
12 lines
315 B
Docker
12 lines
315 B
Docker
FROM golang:1.17.0-alpine AS builder
|
|
RUN apk add --no-cache git
|
|
RUN GO111MODULE=on go get -v github.com/projectdiscovery/httpx/cmd/httpx
|
|
|
|
FROM alpine:latest
|
|
|
|
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"]
|