first commit

This commit is contained in:
2026-04-17 11:56:39 +07:00
commit 2a79993f43
506 changed files with 342249 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM golang:latest as build
WORKDIR /go/src/github.com/vbatts/acme-reverseproxy/
COPY . .
RUN go get -d -v ./...
RUN go install -v -tags netgo github.com/vbatts/acme-reverseproxy
FROM alpine:latest
RUN apk --no-cache add ca-certificates
VOLUME ["/tmp/acme-reverseproxy"]
COPY --from=build /go/bin/acme-reverseproxy /usr/bin/
ENTRYPOINT ["/usr/bin/acme-reverseproxy"]