From 24a6d1548b88ddc71c1c8bb0ac9f45534c77cf9f Mon Sep 17 00:00:00 2001 From: Owen Barton Date: Mon, 10 Dec 2018 09:58:41 -0800 Subject: [PATCH] Temporary workaround for #151 --- builder/builder.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/builder/builder.sh b/builder/builder.sh index 0c6c1c6f..e87e4ff1 100644 --- a/builder/builder.sh +++ b/builder/builder.sh @@ -3,6 +3,11 @@ VERSION=${VERSION:-"0.11.0"} TELEMETRY=${ENABLE_TELEMETRY:-"true"} +# workaround for https://github.com/abiosoft/caddy-docker/issues/151 +git clone https://github.com/xenolf/lego /go/src/github.com/xenolf/lego \ + && cd /go/src/github.com/xenolf/lego \ + && git checkout "4e842a5eb6dcb9520e03db70cd5896f1df14b72a" + # caddy git clone https://github.com/mholt/caddy -b "v$VERSION" /go/src/github.com/mholt/caddy \ && cd /go/src/github.com/mholt/caddy \