mirror of
https://github.com/dockur/windows.git
synced 2026-03-22 03:59:44 +00:00
Update Dockerfile
Attempted to integrate antidetect patches
This commit is contained in:
parent
588969ae5f
commit
22ec19d331
1 changed files with 15 additions and 1 deletions
16
Dockerfile
16
Dockerfile
|
|
@ -18,11 +18,25 @@ RUN set -eu && \
|
||||||
dos2unix \
|
dos2unix \
|
||||||
cabextract \
|
cabextract \
|
||||||
libxml2-utils \
|
libxml2-utils \
|
||||||
|
git \
|
||||||
|
build-essential \
|
||||||
|
ninja-build \
|
||||||
|
python-venv \
|
||||||
|
libglib2.0-0 \
|
||||||
|
flex \
|
||||||
|
bison \
|
||||||
libarchive-tools && \
|
libarchive-tools && \
|
||||||
wget "https://github.com/gershnik/wsdd-native/releases/download/v1.22/wsddn_1.22_${TARGETARCH}.deb" -O /tmp/wsddn.deb -q && \
|
wget "https://github.com/gershnik/wsdd-native/releases/download/v1.22/wsddn_1.22_${TARGETARCH}.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/* && \
|
||||||
|
git clone https://github.com/zhaodice/qemu-anti-detection.git && \
|
||||||
|
wget https://download.qemu.org/qemu-7.2.9.tar.xz && \
|
||||||
|
tar xvJf qemu-7.2.9.tar.xz && \
|
||||||
|
cd qemu-7.2.9 && \
|
||||||
|
git apply ../qemu-anti-detection/qemu-7.2.0.patch && \
|
||||||
|
./configure && \
|
||||||
|
sudo make install -j$(nproc)
|
||||||
|
|
||||||
COPY --chmod=755 ./src /run/
|
COPY --chmod=755 ./src /run/
|
||||||
COPY --chmod=755 ./assets /run/assets
|
COPY --chmod=755 ./assets /run/assets
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue