From e159b98aac174df8cf8523c746a0a23773da439a Mon Sep 17 00:00:00 2001 From: Deon George Date: Mon, 14 Oct 2024 14:24:18 +1100 Subject: [PATCH] Try and catch some errors for arm64 build --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index e46fea6..99ddab1 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -12,7 +12,7 @@ RUN apk add --no-cache nginx nginx-mod-mail bash ENV LEGOVER=v4.19.2 RUN <<-EOF export ARCH=$(sh -c "([ \"`uname -m`\" = \"x86_64\" ] && echo amd64) || ([ \"`uname -m`\" = \"aarch64\" ] && echo arm64) || echo unknown") - curl -sL https://github.com/go-acme/lego/releases/download/${LEGOVER}/lego_${LEGOVER}_linux_${ARCH}.tar.gz | tar -C /usr/sbin -xzf - + curl -vsL https://github.com/go-acme/lego/releases/download/${LEGOVER}/lego_${LEGOVER}_linux_${ARCH}.tar.gz | tar -C /usr/sbin -xzf - EOF # Configuration