From e2983d5b392605029e4ce1d534ec6a3f08cf0199 Mon Sep 17 00:00:00 2001 From: Nikhil Badyal <59223300+nikhilbadyal@users.noreply.github.com> Date: Thu, 31 Aug 2023 11:30:55 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Added=20git=20in=20base=20image?= =?UTF-8?q?=20(#361)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile-base | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-base b/Dockerfile-base index 9ca3f83..f3bbf6c 100644 --- a/Dockerfile-base +++ b/Dockerfile-base @@ -16,7 +16,7 @@ ARG ZULU_REPO_VER=1.0.0-3 # Update package lists and install required packages RUN apt-get -qq update && \ - apt-get -qq -y --no-install-recommends install gnupg software-properties-common locales curl tzdata && \ + apt-get -qq -y --no-install-recommends install gnupg software-properties-common locales curl tzdata git && \ echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen && \ locale-gen en_US.UTF-8 && \ apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0xB1998361219BD9C9 && \