From 865cb9c4170dfe58e95b43a807a454c636b0e277 Mon Sep 17 00:00:00 2001 From: David Shrewsbury Date: Tue, 4 Jun 2024 10:01:59 -0400 Subject: [PATCH] Add packaging to base install --- src/ansible_builder/containerfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ansible_builder/containerfile.py b/src/ansible_builder/containerfile.py index 82b9756a..c0c70513 100644 --- a/src/ansible_builder/containerfile.py +++ b/src/ansible_builder/containerfile.py @@ -145,7 +145,7 @@ def prepare(self) -> None: self._insert_global_args() if image == "base": - self.steps.append("RUN $PYCMD -m pip install --no-cache-dir bindep pyyaml") + self.steps.append("RUN $PYCMD -m pip install --no-cache-dir bindep pyyaml packaging") else: # For an EE schema earlier than v3 with a custom builder image, we always make sure pip is available. context_dir = Path(self.build_outputs_dir).stem