feat: Read WIM metadata directly from ISO (#2036)

This commit is contained in:
Kroese
2026-08-03 05:33:01 +02:00
committed by GitHub
parent b1e2cc47ac
commit cd8af5af51
4 changed files with 550 additions and 71 deletions
+8 -1
View File
@@ -6,6 +6,8 @@ FROM scratch AS build-amd64
COPY --from=qemux/qemu:7.43 / /
ARG TARGETARCH
ARG VERSION_UDF="1.2.0"
ARG VERSION_WSDD="1.26"
ARG VERSION_VIRTIO="1.9.58"
ARG VERSION_BLINTER="1.0.112"
@@ -24,6 +26,7 @@ RUN <<EOF
wimtools \
dos2unix \
cabextract \
xmlstarlet \
icu-devtools \
libxml2-utils \
libarchive-tools
@@ -34,10 +37,14 @@ RUN <<EOF
--no-cache-dir \
"Blinter==${VERSION_BLINTER}"
# Install wsdd
# Install wsddn package
wget "https://github.com/gershnik/wsdd-native/releases/download/v${VERSION_WSDD}/wsddn_${VERSION_WSDD}_${TARGETARCH}.deb" -O /tmp/wsddn.deb -q --timeout=10
dpkg -i /tmp/wsddn.deb
# Install UDFread package
wget "https://github.com/qemus/udfread/releases/download/v${VERSION_UDF}/udfread_${VERSION_UDF}_${TARGETARCH}.deb" -O /tmp/udfread.deb -q --timeout=10
dpkg -i /tmp/udfread.deb
apt-get clean
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
EOF