Skip to content

Commit

Permalink
Quieter builds 2
Browse files Browse the repository at this point in the history
  • Loading branch information
jangaraj committed Jul 28, 2017
1 parent 43a4a45 commit 9f89583
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion dockerfiles/amazonlinux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ENV ZABBIX_VERSION=branches/3.2
WORKDIR /root

RUN \
yum -y -q install git subversion automake autoconf gcc make pcre-devel && \
yum -y -q install git subversion automake autoconf gcc make pcre-devel > /dev/null && \
git clone -q https://github.com/monitoringartist/zabbix-docker-monitoring && \
svn --quiet export svn://svn.zabbix.com/${ZABBIX_VERSION} ~/zabbix/ && \
cd ~/zabbix/ && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/centos/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ENV ZABBIX_VERSION=branches/3.2
WORKDIR /root

RUN \
yum -y -q install git subversion automake autoconf gcc make pcre-devel && \
yum -y -q install git subversion automake autoconf gcc make pcre-devel > /dev/null && \
git clone -q https://github.com/monitoringartist/zabbix-docker-monitoring && \
svn --quiet export svn://svn.zabbix.com/${ZABBIX_VERSION} ~/zabbix/ && \
cd ~/zabbix/ && \
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ ENV ZABBIX_VERSION=branches/3.2
WORKDIR /root

RUN \
apt-get update -qq && \
apt-get -qq --assume-yes install git subversion automake autoconf gcc make pkg-config libpcre3-dev && \
apt-get -qq update > /dev/null && \
apt-get -qq --assume-yes install git subversion automake autoconf gcc make pkg-config libpcre3-dev > /dev/null && \
git clone -q https://github.com/monitoringartist/zabbix-docker-monitoring && \
svn --quiet export svn://svn.zabbix.com/${ZABBIX_VERSION} ~/zabbix/ && \
cd ~/zabbix/ && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/fedora/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ENV ZABBIX_VERSION=branches/3.2
WORKDIR /root

RUN \
dnf -y -q install git subversion automake autoconf gcc make pcre-devel && \
dnf -y -q install git subversion automake autoconf gcc make pcre-devel > /dev/null && \
git clone -q https://github.com/monitoringartist/zabbix-docker-monitoring && \
svn --quiet export svn://svn.zabbix.com/${ZABBIX_VERSION} ~/zabbix/ && \
cd ~/zabbix/ && \
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/opensuse/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ENV ZABBIX_VERSION=branches/3.2
WORKDIR /root

RUN \
zypper install --no-confirm --no-recommends git subversion automake autoconf gcc make pkg-config pcre-devel && \
zypper install --no-confirm --no-recommends git subversion automake autoconf gcc make pkg-config pcre-devel > /dev/null && \
git clone -q https://github.com/monitoringartist/zabbix-docker-monitoring && \
svn --quiet export svn://svn.zabbix.com/${ZABBIX_VERSION} ~/zabbix/ && \
cd ~/zabbix/ && \
Expand Down
4 changes: 2 additions & 2 deletions dockerfiles/ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ ENV ZABBIX_VERSION=branches/3.2
WORKDIR /root

RUN \
apt-get update -qq && \
apt-get -qq --assume-yes install git subversion automake autoconf gcc make pkg-config libpcre3-dev && \
apt-get -qq update > /dev/null && \
apt-get -qq --assume-yes install git subversion automake autoconf gcc make pkg-config libpcre3-dev > /dev/null && \
git clone -q https://github.com/monitoringartist/zabbix-docker-monitoring && \
svn --quiet export svn://svn.zabbix.com/${ZABBIX_VERSION} ~/zabbix/ && \
cd ~/zabbix/ && \
Expand Down

0 comments on commit 9f89583

Please sign in to comment.