From db683dd927008e0d15cdf8ab2996d9c168444e12 Mon Sep 17 00:00:00 2001 From: Jiri Danek Date: Fri, 4 Oct 2024 09:59:10 +0200 Subject: [PATCH] fixup install extra packages on ubi9 py.11 (that we already have on py3.9) --- base/ubi9-python-3.11/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/base/ubi9-python-3.11/Dockerfile b/base/ubi9-python-3.11/Dockerfile index b02cf38f4..e45cf0f57 100644 --- a/base/ubi9-python-3.11/Dockerfile +++ b/base/ubi9-python-3.11/Dockerfile @@ -43,7 +43,11 @@ RUN echo "Installing software and packages" && micropipenv install && rm -f ./Pi USER root # Install usefull OS packages -RUN dnf install -y mesa-libGL && dnf clean all && rm -rf /var/cache/yum +RUN dnf install -y \ + mesa-libGL \ + patch \ + wget \ + && dnf clean all && rm -rf /var/cache/yum # Other apps and tools installed as default user USER 1001