From 713622aed4db6275ee6dde5bce362320b6509574 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Fri, 18 Nov 2022 21:00:28 -0600 Subject: [PATCH] Install acme.sh using online archive Running `acme.sh --install` apparently only copies `acme.sh` itself. This seems odd, since that's just copying a single file. I assumed that the `--install` options also installed the hook scripts, but there is actually a separate option for that: `--install-online`. --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index bd60c0b..4018537 100644 --- a/Containerfile +++ b/Containerfile @@ -18,7 +18,7 @@ RUN curl -fL -o /tmp/acme.sh https://raw.githubusercontent.com/acmesh-official/a mkdir -p /usr/local/acme.sh && \ cd /tmp && \ sh acme.sh \ - --install \ + --install-online \ --home /usr/local/acme.sh \ --config-home /acme.sh \ --no-cron \