From c7599586874621f7ffb2bbfe9cd400d80cac4b6d Mon Sep 17 00:00:00 2001 From: Relintai Date: Wed, 23 Mar 2022 22:09:40 +0100 Subject: [PATCH] Removed the msvc dockerfile, as I don't have the uwp platform anymore. --- misc/build-containers/Dockerfile.msvc | 29 --------------------------- 1 file changed, 29 deletions(-) delete mode 100644 misc/build-containers/Dockerfile.msvc diff --git a/misc/build-containers/Dockerfile.msvc b/misc/build-containers/Dockerfile.msvc deleted file mode 100644 index 2f3aa2be5..000000000 --- a/misc/build-containers/Dockerfile.msvc +++ /dev/null @@ -1,29 +0,0 @@ -ARG img_version -FROM pandemonium-fedora:${img_version} - -ENV WINEDEBUG=-all - -RUN dnf -y install --setopt=install_weak_deps=False \ - wine winetricks xorg-x11-server-Xvfb p7zip-plugins findutils && \ - curl -LO https://github.com/GodotBuilder/pandemonium-builds/releases/download/_tools/angle.7z && \ - curl -LO https://www.python.org/ftp/python/3.7.2/python-3.7.2-amd64.exe && \ - xvfb-run sh -c "winetricks -q vcrun2017; wineserver -w" ;\ - xvfb-run sh -c "winetricks -q dotnet461; wineserver -w" ;\ - xvfb-run sh -c "wine /root/python-3.7.2-amd64.exe /quiet InstallAllUsers=1 PrependPath=1 Include_test=0; wineserver -w" ;\ - rm /root/python-3.7.2-amd64.exe && \ - wine python -m pip install --upgrade pip ; wineserver -w ; \ - wine pip install -U setuptools ; wineserver -w ; \ - wine pip install -U wheel ; wineserver -w ; \ - wine pip install scons pywin32 ; wineserver -w ; \ - cd /root/.wine/drive_c && \ - 7z x /root/angle.7z && \ - rm /root/angle.7z && \ - cd "/root/.wine/drive_c/Program Files (x86)" && \ - tar xf /root/files/msvc2017.tar && \ - cd /root && \ - bash /root/files/msvc-fixup.sh && \ - find /root/.wine -name vctip.exe -delete && \ - rm -rf /root/.wine/drive_c/users/root/Temp/* && \ - rm -rf /root/.cache - -CMD /bin/bash