From 870d484f4b766b04304b8c2eb6aedb0b4f625f7e Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Wed, 13 Aug 2025 07:59:43 -0500 Subject: [PATCH] build: Install git in build stage MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is how _setuptools_scm_ creates the dynamic version string. Not sure how it worked once without it 🤔 --- Containerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Containerfile b/Containerfile index e1af10a..8b9ffcc 100644 --- a/Containerfile +++ b/Containerfile @@ -3,6 +3,7 @@ FROM git.pyrocufflink.net/containerimages/dch-base AS build RUN --mount=type=cache,target=/var/cache \ microdnf install -y \ --setopt install_weak_deps=0 \ + git-core \ python3 \ python3-pip \ python3-setuptools \