From 8b36f33783abb8151d233b20de39cc955b4a1012 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 5 Dec 2025 18:15:59 +0000 Subject: [PATCH 1/2] Initial plan From 774f4b1ea5e7580a1eee5a08eb13c42021f9b49d Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 5 Dec 2025 18:19:18 +0000 Subject: [PATCH 2/2] Pin libmsquic to version 2.4.8 to avoid breaking changes Co-authored-by: richlander <2608468+richlander@users.noreply.github.com> --- src/opensuse/16.0/helix/amd64/Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/opensuse/16.0/helix/amd64/Dockerfile b/src/opensuse/16.0/helix/amd64/Dockerfile index ed419b93f..6f7a0344c 100644 --- a/src/opensuse/16.0/helix/amd64/Dockerfile +++ b/src/opensuse/16.0/helix/amd64/Dockerfile @@ -1,4 +1,5 @@ FROM opensuse/leap:16.0 +ARG LIBMSQUIC_VERSION=2.4.8 # Install Helix Dependencies RUN zypper ref \ @@ -39,10 +40,9 @@ ENV LANG=en_US.utf8 RUN wget https://packages.microsoft.com/keys/microsoft.asc \ && rpm --import microsoft.asc \ && rm microsoft.asc \ - && zypper addrepo https://packages.microsoft.com/opensuse/15/prod/ "MS Packages" \ - && zypper install -y \ - libmsquic \ - && zypper clean -a + && wget "https://packages.microsoft.com/opensuse/15/prod/libmsquic-${LIBMSQUIC_VERSION}-x86_64.rpm" \ + && rpm -i libmsquic-${LIBMSQUIC_VERSION}-x86_64.rpm \ + && rm libmsquic-${LIBMSQUIC_VERSION}-x86_64.rpm RUN ln -sf /usr/bin/python3.13 /usr/bin/python