From a29afd842e9663666332b2740f59e9847a808116 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20=22Pisco=22=20Fernandes?= Date: Mon, 19 Jan 2026 12:37:56 +0000 Subject: [PATCH] fix: Fix wixl bundling tool for windows msi packages --- .ci/image/Dockerfile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.ci/image/Dockerfile b/.ci/image/Dockerfile index 817ffaaa..08398d84 100644 --- a/.ci/image/Dockerfile +++ b/.ci/image/Dockerfile @@ -13,9 +13,8 @@ RUN apt-get update && \ python3-pip \ python3-setuptools \ python3-venv \ - # libmsi and libgcab are libraries the wixl binary depends on. - libmsi-dev \ - libgcab-dev \ + # tool to create msi packages + wixl \ # deb and rpm build tools rubygem-fpm \ rpm \ @@ -26,9 +25,6 @@ RUN apt-get update && \ gcc-aarch64-linux-gnu \ libc6-dev-arm64-cross && \ rm -rf /var/lib/apt/lists/* && \ - # Install wixl - curl -o /usr/local/bin/wixl -L https://pkg.cloudflare.com/binaries/wixl && \ - chmod a+x /usr/local/bin/wixl && \ mkdir -p opt WORKDIR /opt