From 4269bd249cdd8581c7c7978bf71f7218edf3c713 Mon Sep 17 00:00:00 2001 From: Rich Lander Date: Wed, 14 Aug 2024 13:55:35 -0700 Subject: [PATCH 1/3] Add libnuma and libatomic --- src/azurelinux/3.0/helix/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/azurelinux/3.0/helix/Dockerfile b/src/azurelinux/3.0/helix/Dockerfile index 038ea7d2a..f5b542a9c 100644 --- a/src/azurelinux/3.0/helix/Dockerfile +++ b/src/azurelinux/3.0/helix/Dockerfile @@ -60,6 +60,8 @@ RUN tdnf install --setopt tsflags=nodocs --refresh -y \ icu \ iputils \ llvm \ + libgcc-atomic \ + libnuma \ python3 \ python3-pip \ shadow-utils \ From bb4c975c471f58402ea5d0e3b6e129dab29be528 Mon Sep 17 00:00:00 2001 From: Rich Lander Date: Thu, 15 Aug 2024 11:06:14 -0700 Subject: [PATCH 2/3] Re-enable disabled algorithms --- src/azurelinux/3.0/helix/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/azurelinux/3.0/helix/Dockerfile b/src/azurelinux/3.0/helix/Dockerfile index f5b542a9c..73de2a881 100644 --- a/src/azurelinux/3.0/helix/Dockerfile +++ b/src/azurelinux/3.0/helix/Dockerfile @@ -82,6 +82,9 @@ RUN /usr/sbin/useradd -c '' --uid 1000 --shell /bin/bash --groups adm helixbot & USER helixbot +# Temporary fix for https://github.com/dotnet/runtime/issues/106489 +ENV OPENSSL_ENABLE_MD5_VERIFY=1 + # Install Helix Dependencies ENV VIRTUAL_ENV=/home/helixbot/.vsts-env RUN python3 -m venv $VIRTUAL_ENV From e11bee791ce497e9881c5cf1d4fa74f6bc81db53 Mon Sep 17 00:00:00 2001 From: Rich Lander Date: Thu, 15 Aug 2024 11:06:30 -0700 Subject: [PATCH 3/3] Update src/azurelinux/3.0/helix/Dockerfile Co-authored-by: Matt Thalman --- src/azurelinux/3.0/helix/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/azurelinux/3.0/helix/Dockerfile b/src/azurelinux/3.0/helix/Dockerfile index 73de2a881..6129e1b4a 100644 --- a/src/azurelinux/3.0/helix/Dockerfile +++ b/src/azurelinux/3.0/helix/Dockerfile @@ -59,9 +59,9 @@ RUN tdnf install --setopt tsflags=nodocs --refresh -y \ ca-certificates-microsoft \ icu \ iputils \ - llvm \ libgcc-atomic \ libnuma \ + llvm \ python3 \ python3-pip \ shadow-utils \