From 22ec19d33177c1d06815015f6be775d9fb021ed4 Mon Sep 17 00:00:00 2001 From: fuksuhsyitee <49003132+fuksuhsyitee@users.noreply.github.com> Date: Sun, 8 Mar 2026 16:57:03 -0600 Subject: [PATCH] Update Dockerfile Attempted to integrate antidetect patches --- Dockerfile | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c8d6636..72032e4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,11 +18,25 @@ RUN set -eu && \ dos2unix \ cabextract \ libxml2-utils \ + git \ + build-essential \ + ninja-build \ + python-venv \ + libglib2.0-0 \ + flex \ + bison \ libarchive-tools && \ 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 && \ 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 ./assets /run/assets