Commit 18599ab3 authored by Bogdan Mustiata's avatar Bogdan Mustiata
Browse files

Use PYTHON_VERSION instead of hardcoded numbers.

parent 7ee1d56b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -26,7 +26,7 @@ ENV WINEPREFIX /wine
RUN set -x \
    && winetricks win7 \
    && for msifile in `echo core dev exe lib pip tcltk tools`; do \
        wget -nv "https://www.python.org/ftp/python/3.5.2/win32/${msifile}.msi"; \
        wget -nv "https://www.python.org/ftp/python/$PYTHON_VERSION/win32/${msifile}.msi"; \
        wine msiexec /a "${msifile}.msi" /qb TARGETDIR=C:/Python35; \
        rm ${msifile}.msi; \
    done \