diff --git a/test/images/mount-tester/Makefile b/test/images/mount-tester/Makefile index 7b74ea0738..0a6a2e2793 100644 --- a/test/images/mount-tester/Makefile +++ b/test/images/mount-tester/Makefile @@ -12,13 +12,14 @@ # See the License for the specific language governing permissions and # limitations under the License. -TAG = 0.7 +TAG = 0.8 PREFIX = gcr.io/google_containers all: push mt: mt.go - CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' ./mt.go + CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-w' ./mt.go && \ + chmod a+rx mt image: mt sudo docker build --pull -t $(PREFIX)/mounttest:$(TAG) .