building the wine build for windows

This commit is contained in:
Muzahid Hussain 2021-01-15 17:18:05 +01:00
parent 17989a1e63
commit 6e5f46554e
Signed by untrusted user: cis-muzahid
GPG Key ID: FE402425F5C0E6B0
1 changed files with 42 additions and 0 deletions

42
docker/bionic-wine.docker Normal file
View File

@ -0,0 +1,42 @@
FROM pybm-build
ENV HOME /root
RUN mkdir $HOME/Downloads
WORKDIR $HOME/Downloads
RUN wget https://download.microsoft.com/download/7/9/6/796EF2E4-801B-4FC4-AB28-B59FBF6D907B/VCForPython27.msi
# WORKDIR $HOME
# RUN git clone https://github.com/Bitmessage/PyBitmessage
WORKDIR $HOME/PyBitmessage
ENV PATH $HOME/.local/bin:$PATH
# RUN ln -s src pybitmessage
# 64b
# RUN find $HOME -name *.msi
# RUN pip install cryptography
# RUN git clone https://github.com/mhammond/pywin32.git
# RUn pip install simpleai
# RUN python pywin32/pywin32_postinstall.py -install
RUN xvfb-run --auto-servernum wine msiexec -i $HOME/Downloads/VCForPython27.msi /q /norestart
ENV WINEPREFIX $HOME/.wine64
ENV WINEARCH=win64
RUN DISTUTILS_USE_SDK=1
# RUN SET MSSdk=1
# RUN pip install VCForPython.msi
RUN msiexec -i /root/Downloads/VCForPython27.msi
RUN xvfb-run --auto-servernum winetricks -q dotnet40
RUN xvfb-run --auto-servernum wine pip install wheel
RUN xvfb-run --auto-servernum wine python setup.py test
# 32b
RUN sudo xvfb-run i386 buildscripts/winbuild.sh
ENV WINEPREFIX $HOME/.wine32
ENV WINEARCH=wine32
RUN sudo xvfb-run i386 wine msiexec -i $HOME/Downloads/VCForPython27.msi /q /norestart
RUN sudo xvfb-run i386 winetricks -q dotnet40
RUN sudo xvfb-run i386 wine pip install wheel
RUN sudo xvfb-run i386 wine python setup.py test