From d542e4550e72c55084cba5c9377056cc08063861 Mon Sep 17 00:00:00 2001 From: Sorin Sbarnea Date: Sun, 15 Jan 2023 13:12:52 +0000 Subject: [PATCH] Install git-core instead of git on base image As we do not need the full git, it is better to only preinstall git-core on base image. --- base/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/Containerfile b/base/Containerfile index fd68484..c87184e 100644 --- a/base/Containerfile +++ b/base/Containerfile @@ -17,7 +17,7 @@ microdnf update -y && \ microdnf -y upgrade && \ microdnf install -y \ dumb-init \ -git \ +git-core \ podman \ python3 \ python3-bcrypt \