Merge pull request #1749 from dashpole/fix_builds

Add apt-get update to dockerfile
This commit is contained in:
David Ashpole 2017-09-06 16:07:15 -07:00 committed by GitHub
commit 32f77e9f14

View File

@ -1,7 +1,7 @@
FROM golang:latest
MAINTAINER vmarmol@google.com
RUN apt-get install -y git dmsetup
RUN apt-cache update && apt-get clean && apt-get install -y git dmsetup
RUN git clone https://github.com/google/cadvisor.git /go/src/github.com/google/cadvisor
RUN cd /go/src/github.com/google/cadvisor && make