From 677604d899cac831f2720d4786fb10a8a6078934 Mon Sep 17 00:00:00 2001 From: Griefed <griefed@griefed.de> Date: Sun, 28 Aug 2022 12:53:23 +0200 Subject: [PATCH] feat: Add `act`(https://github.com/nektos/act) to image to allow for GitHub workflow runs even though we are not on GitHub :-] --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 519e849..fba66bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -71,6 +71,8 @@ RUN \ echo "**** Installing quasar ****" && \ npm install -g \ @quasar/cli && \ + echo "**** Installing act ****" && \ + curl https://raw.githubusercontent.com/nektos/act/b23bbefc365012886192e477a88d38a0909ecba1/install.sh | bash && \ echo "**** Cleanup ****" && \ rm -rf \ /var/cache/apk/* \ -- GitLab