I'm writing a dockerfile that executes python-3.8.0.exe using wine on ubuntu 18.04.
After installing everything that's needed to run wine I run
RUN set -x \
&& winetricks win10
&& wget -nv https://www.python.org/ftp/python/$PYTHON_VERSION/python-$PYTHON_VERSION.exe
RUN set -x \
&& wine python-$PYTHON_VERSION.exe
I'm also using a virtual machine to test different commands. The command itself works but leads to the installer window being opened. How can i skip that part and directly install the desired python version?