From 9aae8ff4c05056d5d926ee52989abb627c4602c3 Mon Sep 17 00:00:00 2001 From: Billy Bethell <93923166+bbethell-1@users.noreply.github.com> Date: Fri, 28 Jun 2024 09:55:16 +0100 Subject: [PATCH] Update Containerfile - add python pip packages (#39) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Update Containerfile - add python pip packages * Update Containerfile --------- Co-authored-by: Guillaume Coré --- Containerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Containerfile b/Containerfile index 0db2f8c..ce33736 100644 --- a/Containerfile +++ b/Containerfile @@ -37,6 +37,11 @@ RUN alternatives --set python /usr/bin/python3.9 \ && alternatives --install /usr/bin/pip pip /usr/bin/pip3.9 1 RUN pip install --no-cache-dir --upgrade pip +RUN pip install --no-cache-dir \ + pyaml \ + retry \ + requests \ + RUN rm -rf /tmp/* /root/.cache /root/* USER ${USER_UID} CMD ["/bin/bash"]