From 8c9f5a144b8720142b394472b20d78b09d12b8cb Mon Sep 17 00:00:00 2001 From: Ad5001 Date: Sat, 8 Jun 2019 16:44:54 +0200 Subject: [PATCH] Adding bleeding edge pyinstaller 3.5 for accountfree-build-img-wine, w/ fix for PySide2 --- accountfree-build-img-wine/Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/accountfree-build-img-wine/Dockerfile b/accountfree-build-img-wine/Dockerfile index a25d362..e82231f 100644 --- a/accountfree-build-img-wine/Dockerfile +++ b/accountfree-build-img-wine/Dockerfile @@ -10,7 +10,11 @@ RUN wine reg ADD "HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Session Ma RUN rm tor-win32-0.3.5.8.zip # Installing pyinstaller -RUN pip install pyinstaller +RUN git clone https://github.com/pyinstaller/pyinstaller +RUN cd pyinstaller \ + && python setup.py install \ + && cd .. \ + && rm -rf pyinstaller RUN echo 'wine '\''C:\Python36\Scripts\pyinstaller.exe'\'' "$@"' > /usr/bin/pyinstaller RUN chmod +x /usr/bin/pyinstaller