From f61627e43f2f8b2495f90f4bb7823cda76e2ca1a Mon Sep 17 00:00:00 2001 From: Simon Zhao Date: Mon, 19 Feb 2024 21:46:55 +0800 Subject: [PATCH] Install wget in Docker image --- tests/ci/azureml_tests/submit_groupwise_azureml_pytest.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/ci/azureml_tests/submit_groupwise_azureml_pytest.py b/tests/ci/azureml_tests/submit_groupwise_azureml_pytest.py index 7d9f97174..86d0c80ab 100644 --- a/tests/ci/azureml_tests/submit_groupwise_azureml_pytest.py +++ b/tests/ci/azureml_tests/submit_groupwise_azureml_pytest.py @@ -192,6 +192,10 @@ def create_run_config( ENV NVIDIA_DRIVER_CAPABILITIES compute,utility ENV LANG=C.UTF-8 LC_ALL=C.UTF-8 ENV DEBIAN_FRONTEND noninteractive +RUN apt-get update && \ + apt-get install -y wget git-all && \ + apt-get clean -y && \ + rm -rf /var/lib/apt/lists/* # Conda Environment ENV MINICONDA_VERSION py38_23.3.1-0 ENV PATH /opt/miniconda/bin:$PATH