feat: Replace curl with wget for downloading wsddn

This commit is contained in:
Kroese 2025-09-13 19:52:02 +02:00 committed by GitHub
parent bebb648ce5
commit 70d234817e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,7 +19,7 @@ RUN set -eu && \
libxml2-utils \ libxml2-utils \
libarchive-tools \ libarchive-tools \
netcat-openbsd && \ netcat-openbsd && \
curl -sL -o /tmp/wsddn.deb https://github.com/gershnik/wsdd-native/releases/download/v1.21/wsddn_1.21_amd64.deb && \ wget "https://github.com/gershnik/wsdd-native/releases/download/v1.21/wsddn_1.21_amd64.deb" -O /tmp/wsddn.deb -q && \
dpkg -i /tmp/wsddn.deb && \ dpkg -i /tmp/wsddn.deb && \
apt-get clean && \ apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*