From a502a31bd71d78d149a9542b2dfad4a5310f86c2 Mon Sep 17 00:00:00 2001 From: Mikhail Ryzhov Date: Wed, 11 Dec 2024 12:11:42 +0100 Subject: [PATCH] split python install --- .github/dockerfiles/ov_build/fedora_29/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dockerfiles/ov_build/fedora_29/Dockerfile b/.github/dockerfiles/ov_build/fedora_29/Dockerfile index f2fce3d60766e0..fb467cf74e9f80 100644 --- a/.github/dockerfiles/ov_build/fedora_29/Dockerfile +++ b/.github/dockerfiles/ov_build/fedora_29/Dockerfile @@ -32,8 +32,8 @@ RUN chmod +x /install_build_dependencies.sh && \ # Setup Python RUN cd /usr/src && \ wget https://www.python.org/ftp/python/3.9.9/Python-3.9.9.tar.xz && \ - tar xvf Python-3.9.9.tar.xz && \ - cd Python-3.9.9 && \ + tar xvf Python-3.9.9.tar.xz +RUN cd Python-3.9.9 && \ ./configure --enable-shared --with-system-expat --enable-optimizations --enable-loadable-sqlite-extensions --prefix=/usr && \ make altinstall