From a9cdea92f30d798a1c533b6fed22c1c19b6878c7 Mon Sep 17 00:00:00 2001 From: "Kevin L. Mitchell" Date: Tue, 27 Oct 2020 12:57:48 -0400 Subject: [PATCH 1/2] Ensure git is installed in alpine image Apparently, a recent update to the upstream alpine image has resulted in git no longer being installed by default in the alpine container image. This commit ensures that git is installed. Closes issue #346 --- Dockerfile-alpine.template | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile-alpine.template b/Dockerfile-alpine.template index ef90a0b8..47e70a64 100644 --- a/Dockerfile-alpine.template +++ b/Dockerfile-alpine.template @@ -20,6 +20,7 @@ RUN set -eux; \ go \ musl-dev \ openssl \ + git \ ; \ export \ # set GOROOT_BOOTSTRAP such that we can actually build Go From 8a5201ac6010a26c1f0d84f9ccfadafeb92b5064 Mon Sep 17 00:00:00 2001 From: "Kevin L. Mitchell" Date: Tue, 27 Oct 2020 13:01:34 -0400 Subject: [PATCH 2/2] Regenerate Dockerfile This commit regenerates the Dockerfiles from the updated template. --- 1.14/alpine3.11/Dockerfile | 1 + 1.14/alpine3.12/Dockerfile | 1 + 1.15/alpine3.12/Dockerfile | 1 + 3 files changed, 3 insertions(+) diff --git a/1.14/alpine3.11/Dockerfile b/1.14/alpine3.11/Dockerfile index f528dc46..9c8549f4 100644 --- a/1.14/alpine3.11/Dockerfile +++ b/1.14/alpine3.11/Dockerfile @@ -26,6 +26,7 @@ RUN set -eux; \ go \ musl-dev \ openssl \ + git \ ; \ export \ # set GOROOT_BOOTSTRAP such that we can actually build Go diff --git a/1.14/alpine3.12/Dockerfile b/1.14/alpine3.12/Dockerfile index b8366f0f..33888ac0 100644 --- a/1.14/alpine3.12/Dockerfile +++ b/1.14/alpine3.12/Dockerfile @@ -26,6 +26,7 @@ RUN set -eux; \ go \ musl-dev \ openssl \ + git \ ; \ export \ # set GOROOT_BOOTSTRAP such that we can actually build Go diff --git a/1.15/alpine3.12/Dockerfile b/1.15/alpine3.12/Dockerfile index 66d3d5f9..b4a38760 100644 --- a/1.15/alpine3.12/Dockerfile +++ b/1.15/alpine3.12/Dockerfile @@ -26,6 +26,7 @@ RUN set -eux; \ go \ musl-dev \ openssl \ + git \ ; \ export \ # set GOROOT_BOOTSTRAP such that we can actually build Go