From 652342cb0059de103e1ab1561b555cacb2082631 Mon Sep 17 00:00:00 2001 From: Chris Fenner Date: Sat, 13 Aug 2022 16:37:12 -0700 Subject: [PATCH 1/2] Add bash The container could stand to use bash for other actions (e.g., [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action)). This change adds it --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 3186d4e..486b267 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,6 +39,7 @@ RUN tlmgr update --self && \ transparent RUN apk upgrade && apk add --no-cache \ + bash nodejs \ npm \ chromium From 8c7fd5f9fd256325e5a053d0036a963b2818fd45 Mon Sep 17 00:00:00 2001 From: Chris Fenner Date: Sat, 13 Aug 2022 16:38:20 -0700 Subject: [PATCH 2/2] add missing trailing \ --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 486b267..17b8bb9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,7 +39,7 @@ RUN tlmgr update --self && \ transparent RUN apk upgrade && apk add --no-cache \ - bash + bash \ nodejs \ npm \ chromium