aboutsummaryrefslogtreecommitdiffhomepage
path: root/master-centos6-onbuild
diff options
context:
space:
mode:
Diffstat (limited to 'master-centos6-onbuild')
-rw-r--r--master-centos6-onbuild/Dockerfile7
1 files changed, 4 insertions, 3 deletions
diff --git a/master-centos6-onbuild/Dockerfile b/master-centos6-onbuild/Dockerfile
index 4b8585d..091bad2 100644
--- a/master-centos6-onbuild/Dockerfile
+++ b/master-centos6-onbuild/Dockerfile
@@ -30,6 +30,7 @@ RUN echo "===> Installing EPEL..." && \
30 yum -y install \ 30 yum -y install \
31 gcc make \ 31 gcc make \
32 python python-devel python-pip \ 32 python python-devel python-pip \
33 libffi-devel openssl-devel \
33 libxml2 libxml2-devel libxslt libxslt-devel \ 34 libxml2 libxml2-devel libxslt libxslt-devel \
34 git sudo curl && \ 35 git sudo curl && \
35 pip install --upgrade pip && \ 36 pip install --upgrade pip && \
@@ -58,9 +59,9 @@ RUN echo "===> Installing EPEL..." && \
58 sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers && \ 59 sed -i -e 's/^\(Defaults\s*requiretty\)/#--- \1/' /etc/sudoers && \
59 \ 60 \
60 \ 61 \
61 echo "===> Removing unused YUM resources..." && \ 62 echo "===> Removing unused YUM resources..." && \
62 yum -y remove \ 63 yum -y remove epel-release gcc git python-devel python-pip \
63 epel-release python-devel python-pip gcc git && \ 64 libffi-devel openssl-devel || true && \
64 yum clean all && \ 65 yum clean all && \
65 \ 66 \
66 \ 67 \