From 09aeb77480127ba947ec03784ff33b6e079f02a5 Mon Sep 17 00:00:00 2001 From: jing Date: Thu, 23 Jan 2020 22:47:07 +0100 Subject: [PATCH] The base image doesn't contains bash, your bash script won't work --- certbot/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot/Dockerfile b/certbot/Dockerfile index 9079004..5810bc7 100644 --- a/certbot/Dockerfile +++ b/certbot/Dockerfile @@ -1,5 +1,5 @@ FROM certbot/certbot:latest RUN apk update \ - && apk add jq curl\ + && apk add jq curl bash\ && rm -rf /var/cache/apk/*