From 1a36bf5fbbf5f0fdd7a6934390fd85a997701f69 Mon Sep 17 00:00:00 2001 From: Juan Pablo Civile Date: Tue, 4 Oct 2022 15:07:08 -0300 Subject: [PATCH] Include git in builder image for go build stamps --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4925479..7112a5b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,8 @@ RUN apt-get update RUN apt-get install -y \ golang-1.18-go=1.18.1-1ubuntu1 \ gcc-mingw-w64=10.3.0-14ubuntu1+24.3 \ - gcc-multilib=4:11.2.0-1ubuntu1 + gcc-multilib=4:11.2.0-1ubuntu1 \ + git=1:2.34.1-1ubuntu1 # Copy the source code into the container: WORKDIR /src