Fix docker-compose build

This commit is contained in:
nicolas.dorier 2021-03-14 14:16:22 +09:00
parent 853e923e9a
commit 465c2480a9
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE

View File

@ -21,8 +21,8 @@ RUN pip install six==$SIX_VER
# https://pyinstaller.readthedocs.io/en/stable/bootloader-building.html
WORKDIR /build/pyinstallerbootloader
RUN curl -fsSL https://github.com/pyinstaller/pyinstaller/releases/download/v$PYINSTALLER_VER/PyInstaller-$PYINSTALLER_VER.tar.gz | tar xvz >/dev/null \
&& cd PyInstaller*/bootloader \
&& python3 ./waf all
&& cd pyinstaller-$PYINSTALLER_VER/bootloader \
&& python3.7 waf configure all && cd .. && python3.7 -m pip install .
# Clone docker-compose
WORKDIR /build/dockercompose