diff --git a/ci/Dockerfile.centos7 b/ci/Dockerfile.centos7 index 5122ec3..e625646 100644 --- a/ci/Dockerfile.centos7 +++ b/ci/Dockerfile.centos7 @@ -2,7 +2,7 @@ FROM centos:7 RUN yum install -y centos-release-scl && \ yum install -y devtoolset-8 wget curl patchelf vim-common fuse libfuse2 libtool autoconf automake zlib-devel libjpeg-devel libpng-devel nano git file gcc-c++ && \ - wget https://artifacts.assassinate-you.net/prebuilt-cmake/continuous/cmake-v3.19.1-centos7-x86_64.tar.gz -O- | tar xz --strip-components=1 -C/usr/local + wget https://artifacts.assassinate-you.net/prebuilt-cmake/cmake-v3.19.1-centos7-x86_64.tar.gz -O- | tar xz --strip-components=1 -C/usr/local ENV ARCH=x86_64 COPY entrypoint.sh / diff --git a/ci/Dockerfile.centos7-i386 b/ci/Dockerfile.centos7-i386 index 072661a..c5487d9 100644 --- a/ci/Dockerfile.centos7-i386 +++ b/ci/Dockerfile.centos7-i386 @@ -19,7 +19,7 @@ ENV ARCH=i386 ENTRYPOINT ["/entrypoint.sh"] SHELL ["/entrypoint.sh", "bash", "-x", "-c"] -RUN https://artifacts.assassinate-you.net/prebuilt-cmake/continuous/cmake-v3.19.1-centos7-i386.tar.gz -O- | tar xz --strip-components=1 -C/usr/local +RUN wget https://artifacts.assassinate-you.net/prebuilt-cmake/cmake-v3.19.1-centos7-i386.tar.gz -O- | tar xz --strip-components=1 -C/usr/local RUN git clone https://github.com/NixOS/patchelf.git && \ pushd patchelf && \