From 42e3649ab00f154cd0ed5c6636ebdfbf61c9da8b Mon Sep 17 00:00:00 2001 From: Chris Saunders Date: Fri, 14 Jul 2017 12:04:21 -0700 Subject: [PATCH] deployment: Update centos5 deploy script to vault Centos5 has been EOL'd, so docker images to support centos5 binaries need to have yum baseurl updated to vault.centos.org --- scratch/docker/deployment/centos5PlusGcc48/Dockerfile | 2 +- scratch/docker/deployment/centos5PlusGcc49FromSrc/Dockerfile | 2 +- scratch/docker/deployment/centos5PlusGcc52FromSrc/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/scratch/docker/deployment/centos5PlusGcc48/Dockerfile b/scratch/docker/deployment/centos5PlusGcc48/Dockerfile index ad234236..defb6633 100644 --- a/scratch/docker/deployment/centos5PlusGcc48/Dockerfile +++ b/scratch/docker/deployment/centos5PlusGcc48/Dockerfile @@ -7,7 +7,7 @@ # the centos5 base image. # -FROM centos:5 +FROM astj/centos5-vault # add standard centos5 packages: RUN yum install -y bzip2 make gcc gcc-c++ tar wget zlib-devel git && \ diff --git a/scratch/docker/deployment/centos5PlusGcc49FromSrc/Dockerfile b/scratch/docker/deployment/centos5PlusGcc49FromSrc/Dockerfile index 201cf5db..a51fcee5 100644 --- a/scratch/docker/deployment/centos5PlusGcc49FromSrc/Dockerfile +++ b/scratch/docker/deployment/centos5PlusGcc49FromSrc/Dockerfile @@ -11,7 +11,7 @@ # to our non-docker based deployment: # -FROM centos:5 +FROM astj/centos5-vault # add standard centos5 packages && swap in newer cmake as default: RUN yum install -y bzip2 make gcc gcc-c++ tar wget zlib-devel git && \ diff --git a/scratch/docker/deployment/centos5PlusGcc52FromSrc/Dockerfile b/scratch/docker/deployment/centos5PlusGcc52FromSrc/Dockerfile index a3360ae6..dc36f35b 100644 --- a/scratch/docker/deployment/centos5PlusGcc52FromSrc/Dockerfile +++ b/scratch/docker/deployment/centos5PlusGcc52FromSrc/Dockerfile @@ -11,7 +11,7 @@ # to our non-docker based deployment: # -FROM centos:5 +FROM astj/centos5-vault # add standard centos5 packages && swap in newer cmake as default: RUN yum install -y bzip2 make gcc gcc-c++ tar wget zlib-devel git && \