Files
projectdiscovery-httpx/Dockerfile
T
dependabot[bot] 8c40e52322 chore(deps): bump alpine from 3.16.3 to 3.17.0 (#888)
Bumps alpine from 3.16.3 to 3.17.0.

---
updated-dependencies:
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-11-28 17:16:03 +05:30

11 lines
323 B
Docker

FROM golang:1.19.3-alpine AS builder
RUN apk add --no-cache git gcc musl-dev
RUN go install -v github.com/projectdiscovery/httpx/cmd/httpx@latest
FROM alpine:3.17.0
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"]