Mercurial > hg > orthanc-python
changeset 19:0977f5152861 OrthancPython-1.0
fix missing python in mingw32 builder
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 01 Apr 2020 11:01:07 +0200 |
parents | 777b677cc9fc |
children | 5466d9340fc7 45c39325b6bb |
files | Resources/Builders/Dockerfile-MinGW-BuildEnvironment Resources/Builders/MinGW32-Python2.7/docker-internal.sh |
diffstat | 2 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/Resources/Builders/Dockerfile-MinGW-BuildEnvironment Wed Apr 01 10:43:11 2020 +0200 +++ b/Resources/Builders/Dockerfile-MinGW-BuildEnvironment Wed Apr 01 11:01:07 2020 +0200 @@ -5,5 +5,5 @@ RUN apt-get -y clean && apt-get -y update RUN DEBIAN_FRONTEND=noninteractive apt-get -y install \ - nano unzip cmake mingw-w64 patch wget bzip2 && \ + nano unzip cmake mingw-w64 patch wget bzip2 python && \ apt-get clean && rm -rf /var/lib/apt/lists/*
--- a/Resources/Builders/MinGW32-Python2.7/docker-internal.sh Wed Apr 01 10:43:11 2020 +0200 +++ b/Resources/Builders/MinGW32-Python2.7/docker-internal.sh Wed Apr 01 11:01:07 2020 +0200 @@ -11,7 +11,7 @@ cd /tmp/build wget http://orthanc.osimis.io/ThirdPartyDownloads/Python/python-2.7.17-win32.tar.bz2 -tar xvfj python-2.7.17-win32.tar.bz2 +tar xfj python-2.7.17-win32.tar.bz2 cmake /tmp/source-writeable/ \ -DCMAKE_BUILD_TYPE=$1 \