Created
September 12, 2019 19:04
-
-
Save emmiep/58a858fb8d3c03687fc6f6ea1368ec46 to your computer and use it in GitHub Desktop.
Minimal Caddy dockerfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM golang:1.13 AS build | |
| ENV GO111MODULE on | |
| RUN go get github.com/caddyserver/caddy/caddy | |
| FROM busybox:1-glibc | |
| COPY --from=build /go/bin/caddy /usr/local/bin/caddy | |
| CMD ["caddy"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment