Skip to content

Commit a29afd8

Browse files
committed
fix: Fix wixl bundling tool for windows msi packages
1 parent d9cdd49 commit a29afd8

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.ci/image/Dockerfile

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ RUN apt-get update && \
1313
python3-pip \
1414
python3-setuptools \
1515
python3-venv \
16-
# libmsi and libgcab are libraries the wixl binary depends on.
17-
libmsi-dev \
18-
libgcab-dev \
16+
# tool to create msi packages
17+
wixl \
1918
# deb and rpm build tools
2019
rubygem-fpm \
2120
rpm \
@@ -26,9 +25,6 @@ RUN apt-get update && \
2625
gcc-aarch64-linux-gnu \
2726
libc6-dev-arm64-cross && \
2827
rm -rf /var/lib/apt/lists/* && \
29-
# Install wixl
30-
curl -o /usr/local/bin/wixl -L https://pkg.cloudflare.com/binaries/wixl && \
31-
chmod a+x /usr/local/bin/wixl && \
3228
mkdir -p opt
3329

3430
WORKDIR /opt

0 commit comments

Comments
 (0)