We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 657950c commit e387122Copy full SHA for e387122
Dockerfile
@@ -4,6 +4,7 @@ ENV DEBIAN_FRONTEND noninteractive
4
5
ARG WINE_VERSION=winehq-stable
6
ARG PYTHON_VERSION=3.7.9
7
+ARG PYINSTALLER_VERSION=3.6
8
9
# we need wine for this all to work, so we'll use the PPA
10
RUN set -x \
@@ -69,7 +70,7 @@ RUN set -x \
69
70
&& cp "$W_TMP"/*.dll "$W_SYSTEM_DLLS"/
71
72
# install pyinstaller
-RUN /usr/bin/pip install pyinstaller
73
+RUN /usr/bin/pip install pyinstaller==$PYINSTALLER_VERSION
74
75
# put the src folder inside wine
76
RUN mkdir /src/ && ln -s /src /wine/drive_c/src
0 commit comments