From 9c26322a1f6a98e25cdecb801a379f4e08911eba Mon Sep 17 00:00:00 2001 From: linuxbandit Date: Thu, 11 Feb 2021 10:39:22 +0100 Subject: [PATCH] feat: add git add git for use in https://github.com/jobtome-labs/ci-templates/pull/65 --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ccec0d0..c0bdd9d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,9 @@ LABEL maintainer="Fabrizio Bellicano " \ description="sentry-cli with bash." \ license="MIT" -RUN apk add --no-cache bash=4.4.19-r1 +RUN apk add --no-cache \ + bash=4.4.19-r1 \ + git=2.15.4-r0 ENTRYPOINT [ "/bin/bash" ]