From 2ac248134e91937cd3b0a83281edfc5e643eb7de Mon Sep 17 00:00:00 2001 From: Kosta Date: Thu, 26 Jan 2023 13:18:03 +0100 Subject: [PATCH] Dockerfile: Install openssh-client to be able to fetch git dependencies --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 2b8b83b2a..b24694b0c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -44,7 +44,7 @@ ENV PATH /opt/python/cp37-cp37m/bin:/opt/python/cp38-cp38/bin:/opt/python/cp39-c ENV USER root RUN curl --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y \ - && yum install -y libffi-devel \ + && yum install -y libffi-devel openssh-client \ && python3.7 -m pip install --no-cache-dir cffi \ && python3.8 -m pip install --no-cache-dir cffi \ && python3.9 -m pip install --no-cache-dir cffi \