From 10a4e91794e7a718fa8374198583c324fc984067 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 6 Jan 2017 14:07:19 +0100 Subject: [PATCH] Quiet wget invocation --- id-deb-build/docker-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/id-deb-build/docker-build.sh b/id-deb-build/docker-build.sh index 2c3a528..55bc4e3 100755 --- a/id-deb-build/docker-build.sh +++ b/id-deb-build/docker-build.sh @@ -250,7 +250,7 @@ if test "${CENTOS_DIST}"; then echo "FROM centos:$D" >Dockerfile echo "RUN yum install -y wget yum-utils redhat-rpm-config rpm-build gcc gcc-c++ make" >>Dockerfile echo "RUN rpm --import http://ftp.indexdata.com/pub/yum/centos/$F/RPM-GPG-KEY-indexdata" >>Dockerfile - echo "RUN wget http://ftp.indexdata.com/pub/yum/centos/$F/indexdata.repo -P /etc/yum.repos.d/" >>Dockerfile + echo "RUN wget -q http://ftp.indexdata.com/pub/yum/centos/$F/indexdata.repo -P /etc/yum.repos.d/" >>Dockerfile echo 'ENTRYPOINT ["/bin/sh", "-c"]' >>Dockerfile docker build -t indexdata-build-centos:$D . echo -n "$dist " -- 1.7.10.4