Dockerfile 224 B

123456789
  1. FROM golang:alpine AS builder
  2. RUN apk add --no-cache git && CGO_ENABLED=0 GOOS=linux go get github.com/alash3al/httpsify
  3. FROM scratch
  4. COPY --from=builder /go/bin/httpsify /go/bin/httpsify
  5. ENTRYPOINT ["/go/bin/httpsify"]