Skip to content

Commit cd9ebaf

Browse files
author
Matthew Fisher
committed
fix(logger): turn off verbose untar'ing
untar'ing go's tarball dumps out a lot of unneeded lines. This cleans up the build process a bit.
1 parent df1c0ed commit cd9ebaf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

logger/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ MAINTAINER Gabriel Monroy <gabriel@opdemand.com>
33

44
# install go runtime
55
RUN wget -O /tmp/go1.2.1.linux-amd64.tar.gz -q https://go.googlecode.com/files/go1.2.1.linux-amd64.tar.gz
6-
RUN tar -C /usr/local -xzvf /tmp/go1.2.1.linux-amd64.tar.gz
6+
RUN tar -C /usr/local -xzf /tmp/go1.2.1.linux-amd64.tar.gz
77

88
# prepare go environment
99
RUN mkdir -p /go

0 commit comments

Comments
 (0)