From 7ed839d8a7f9958c67d9148da619bc00c19b2246 Mon Sep 17 00:00:00 2001 From: ravinque <74673799+ravinque@users.noreply.github.com> Date: Mon, 21 Dec 2020 16:27:17 +0800 Subject: [PATCH] Update Docker file to add bash for MAA project --- 14-alpine/Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/14-alpine/Dockerfile b/14-alpine/Dockerfile index e2fd0a6..d421d17 100644 --- a/14-alpine/Dockerfile +++ b/14-alpine/Dockerfile @@ -28,6 +28,11 @@ RUN apk update \ RUN apk update \ && apk add --no-cache rng-tools \ && rm -rf /var/cache/apk/* + +# bash +RUN apk update \ + && apk add --no-cache bash \ + && rm -rf /var/cache/apk/* # Tell Puppeteer to skip installing Chrome. We'll be using the installed package. ENV CHROME_BIN=/usr/bin/chromium-browser \