9 lines
224 B
Docker
9 lines
224 B
Docker
FROM cdrx/pyinstaller-windows:python3
|
|
|
|
ARG PYSIDE2_VERSION=5.15.0
|
|
|
|
RUN apt update -qy \
|
|
&& apt upgrade -qy
|
|
RUN apt install -y rename wget curl p7zip-full git xvfb
|
|
RUN apt clean
|
|
RUN pip install PySide2==$PYSIDE2_VERSION
|