Files
projectdiscovery-httpx/Dockerfile
T
dependabot[bot] 3c9a323dbb chore(deps): bump golang from 1.20.1-alpine to 1.20.2-alpine (#1035)
Bumps golang from 1.20.1-alpine to 1.20.2-alpine.

---
updated-dependencies:
- dependency-name: golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-03-14 01:23:45 +05:30

15 lines
339 B
Docker

# Base
FROM golang:1.20.2-alpine AS builder
RUN apk add --no-cache git build-base gcc musl-dev
WORKDIR /app
COPY . /app
RUN go mod download
RUN go build ./cmd/httpx
FROM alpine:3.17.2
RUN apk -U upgrade --no-cache \
&& apk add --no-cache bind-tools ca-certificates
COPY --from=builder /app/httpx /usr/local/bin/
ENTRYPOINT ["httpx"]