From 13ed6f280e61a5de7aa8dfd4300bbe4d7a786977 Mon Sep 17 00:00:00 2001 From: Filip Leonarski Date: Tue, 30 Sep 2025 13:02:50 +0200 Subject: [PATCH] Docker: Update images (add LFS and Python requests on Rocky) --- docker/rocky8/Dockerfile | 4 ++++ docker/rocky9/Dockerfile | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/docker/rocky8/Dockerfile b/docker/rocky8/Dockerfile index 7e23306c..b8a0f18e 100644 --- a/docker/rocky8/Dockerfile +++ b/docker/rocky8/Dockerfile @@ -14,6 +14,7 @@ RUN dnf -y update && \ dnf-plugins-core \ epel-release \ git \ + git-lfs \ which \ ca-certificates \ wget \ @@ -60,12 +61,15 @@ RUN dnf -y update && \ python3-pip \ python3-setuptools \ python3-wheel \ + python3-requests \ twine \ openblas \ openblas-devel \ freetype-devel && \ dnf clean all && rm -rf /var/cache/dnf +RUN git lfs install + RUN set -eux; \ cd /tmp; \ curl -LO https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz; \ diff --git a/docker/rocky9/Dockerfile b/docker/rocky9/Dockerfile index cfd74a02..0b259146 100644 --- a/docker/rocky9/Dockerfile +++ b/docker/rocky9/Dockerfile @@ -15,6 +15,7 @@ RUN dnf -y update && \ dnf-plugins-core \ epel-release \ git \ + git-lfs \ which \ ca-certificates \ wget \ @@ -32,6 +33,7 @@ RUN dnf -y update && \ redhat-rpm-config \ ninja-build \ python3 \ + python3-requests \ perl \ pkgconf-pkg-config \ libxcb-devel \ @@ -61,6 +63,8 @@ RUN dnf -y update && \ freetype-devel && \ dnf clean all && rm -rf /var/cache/dnf +RUN git lfs install + RUN set -eux; \ cd /tmp; \ curl -LO https://www.openssl.org/source/openssl-${OPENSSL_VERSION}.tar.gz; \