fix: Fix wixl bundling tool for windows msi packages
This commit is contained in:
parent
d9cdd49eec
commit
a29afd842e
|
|
@ -13,9 +13,8 @@ RUN apt-get update && \
|
||||||
python3-pip \
|
python3-pip \
|
||||||
python3-setuptools \
|
python3-setuptools \
|
||||||
python3-venv \
|
python3-venv \
|
||||||
# libmsi and libgcab are libraries the wixl binary depends on.
|
# tool to create msi packages
|
||||||
libmsi-dev \
|
wixl \
|
||||||
libgcab-dev \
|
|
||||||
# deb and rpm build tools
|
# deb and rpm build tools
|
||||||
rubygem-fpm \
|
rubygem-fpm \
|
||||||
rpm \
|
rpm \
|
||||||
|
|
@ -26,9 +25,6 @@ RUN apt-get update && \
|
||||||
gcc-aarch64-linux-gnu \
|
gcc-aarch64-linux-gnu \
|
||||||
libc6-dev-arm64-cross && \
|
libc6-dev-arm64-cross && \
|
||||||
rm -rf /var/lib/apt/lists/* && \
|
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
|
mkdir -p opt
|
||||||
|
|
||||||
WORKDIR /opt
|
WORKDIR /opt
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue