From ceee64eb2d9cef99eb3aae4785ed4473ee7efb52 Mon Sep 17 00:00:00 2001 From: Klaus Hartl Date: Sat, 18 Sep 2021 10:04:00 +0200 Subject: [PATCH] Try installing git as part of the image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 482e1dc..1d4a597 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,7 @@ FROM alpine:3.13.6 +RUN apk update && apk add git + ADD ["https://github.com/thoughtworks/talisman/releases/download/v1.22.0/talisman_linux_amd64", "/talisman"] RUN chmod +x /talisman