Skip to content

Instantly share code, notes, and snippets.

@emmiep
Created September 12, 2019 19:04
Show Gist options
  • Select an option

  • Save emmiep/58a858fb8d3c03687fc6f6ea1368ec46 to your computer and use it in GitHub Desktop.

Select an option

Save emmiep/58a858fb8d3c03687fc6f6ea1368ec46 to your computer and use it in GitHub Desktop.
Minimal Caddy dockerfile
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