From 08136d0a3ceb98e6166caeafadc5ee5082e6b5bd Mon Sep 17 00:00:00 2001 From: David Ashpole Date: Wed, 6 Sep 2017 16:45:35 -0700 Subject: [PATCH] clean after apt-get install --- deploy/canary/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/canary/Dockerfile b/deploy/canary/Dockerfile index 66999f78..221e59e7 100644 --- a/deploy/canary/Dockerfile +++ b/deploy/canary/Dockerfile @@ -1,7 +1,7 @@ FROM golang:latest MAINTAINER vmarmol@google.com -RUN apt-cache update && apt-get clean && apt-get install -y git dmsetup +RUN apt-cache update && apt-get install -y git dmsetup && apt-get clean RUN git clone https://github.com/google/cadvisor.git /go/src/github.com/google/cadvisor RUN cd /go/src/github.com/google/cadvisor && make