Skip to content
This repository has been archived by the owner on Mar 31, 2023. It is now read-only.

Commit

Permalink
Corrected the tar syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
fbarl committed Sep 25, 2019
1 parent 77d20dd commit e18f63b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/container/images/centos7/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN curl -fsSLo /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/dow
# Install golang so we can run our tests on macs
ENV GO_VERSION 1.12
RUN curl -fsSLo /tmp/gotar.tgz "https://dl.google.com/go/go$GO_VERSION.linux-$ARCH.tar.gz" \
&& tar xzf -C /usr/local /tmp/gotar.tgz && rm /tmp/gotar.tgz
&& tar -C /usr/local -xzf /tmp/gotar.tgz && rm /tmp/gotar.tgz

ENV SRC_PATH /go/src/github.com/weaveworks/wksctl
WORKDIR $SRC_PATH
Expand Down

0 comments on commit e18f63b

Please sign in to comment.