We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c3f7f5 commit 6f57941Copy full SHA for 6f57941
Dockerfile
@@ -1,9 +1,10 @@
1
FROM golang:alpine AS builder
2
3
RUN apk add --no-cache git && CGO_ENABLED=0 GOOS=linux go get github.com/alash3al/httpsify
4
+RUN apk add -U --no-cache ca-certificates
5
6
FROM scratch
-
7
+COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
8
COPY --from=builder /go/bin/httpsify /go/bin/httpsify
9
10
ENTRYPOINT ["/go/bin/httpsify"]
0 commit comments