X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/86b7903116608ac3a8314437639cb61d774fb510..474c0be6cf3beb536e83a42a08220313e303decf:/build/package-build-dockerfiles/centos7/Dockerfile diff --git a/build/package-build-dockerfiles/centos7/Dockerfile b/build/package-build-dockerfiles/centos7/Dockerfile index 3d3ea6f0f8..916c4abbb0 100644 --- a/build/package-build-dockerfiles/centos7/Dockerfile +++ b/build/package-build-dockerfiles/centos7/Dockerfile @@ -18,6 +18,17 @@ RUN gpg --import --no-tty /tmp/mpapis.asc && \ /usr/local/rvm/bin/rvm alias create default ruby-2.5 && \ /usr/local/rvm/bin/rvm-exec default gem install fpm --version 1.10.2 +# Install Bash 4.4.12 // see https://dev.arvados.org/issues/15612 +RUN cd /usr/local/src \ +&& wget http://ftp.gnu.org/gnu/bash/bash-4.4.12.tar.gz \ +&& wget http://ftp.gnu.org/gnu/bash/bash-4.4.12.tar.gz.sig \ +&& tar xzf bash-4.4.12.tar.gz \ +&& cd bash-4.4.12 \ +&& ./configure --prefix=/usr/local/$( basename $( pwd ) ) \ +&& make \ +&& make install \ +&& ln -sf /usr/local/src/bash-4.4.12/bash /bin/bash + # Install golang binary ADD generated/go1.12.7.linux-amd64.tar.gz /usr/local/ RUN ln -s /usr/local/go/bin/go /usr/local/bin/ @@ -28,8 +39,8 @@ RUN ln -s /usr/local/node-v6.11.2-linux-x64/bin/* /usr/local/bin/ # Need to "touch" RPM database to workaround bug in interaction between # overlayfs and yum (https://bugzilla.redhat.com/show_bug.cgi?id=1213602) -RUN touch /var/lib/rpm/* && yum -q -y install rh-python35 -RUN scl enable rh-python35 "easy_install-3.5 pip" && easy_install-2.7 pip +RUN touch /var/lib/rpm/* && yum -q -y install rh-python36 +RUN scl enable rh-python36 "easy_install-3.6 pip" && easy_install-2.7 pip # Add epel, we need it for the python-pam dependency RUN wget http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm @@ -41,4 +52,4 @@ RUN git clone --depth 1 git://git.curoverse.com/arvados.git /tmp/arvados && cd / RUN pip install --upgrade setuptools ENV WORKSPACE /arvados -CMD ["scl", "enable", "rh-python35", "/usr/local/rvm/bin/rvm-exec default bash /jenkins/run-build-packages.sh --target centos7"] +CMD ["scl", "enable", "rh-python36", "/usr/local/rvm/bin/rvm-exec default bash /jenkins/run-build-packages.sh --target centos7"]