Update Dockerfile

This commit is contained in:
nobody's watching 2024-06-21 11:03:45 -07:00 committed by GitHub
parent 4cc90d4e1e
commit 6a2743f43d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -19,11 +19,22 @@ RUN set -eu && \
dos2unix \ dos2unix \
cabextract \ cabextract \
genisoimage \ genisoimage \
libxml2-utils && \ libxml2-utils \
git \
build-essential \
ninja-build \
python3-venv \
libglib2.0-0t64 \
flex \
bison && \
apt-get clean && \ apt-get clean && \
echo "$VERSION_ARG" > /run/version && \ echo "$VERSION_ARG" > /run/version && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Clone and set up the QEMU anti-detection script
RUN git clone https://github.com/zhaodice/qemu-anti-detection.git /opt/qemu-anti-detection && \
chmod -R 755 /opt/qemu-anti-detection
COPY --chmod=755 ./src /run/ COPY --chmod=755 ./src /run/
COPY --chmod=755 ./assets /run/assets COPY --chmod=755 ./assets /run/assets