Skip to content
This repository was archived by the owner on Feb 27, 2018. It is now read-only.

Commit ef34764

Browse files
committed
Merge pull request #319 from nathanleclaire/dockerfile_cache
Use efficient cache in Dockerfile
2 parents 93908af + 1f5d37d commit ef34764

1 file changed

Lines changed: 4 additions & 2 deletions

File tree

Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
FROM golang:1.3-cross
44

5-
ADD . /go/src/github.com/boot2docker/boot2docker-cli
65
WORKDIR /go/src/github.com/boot2docker/boot2docker-cli
76

87
# Download (but not install) dependencies
9-
RUN go get -d -v ./...
8+
RUN go get github.com/BurntSushi/toml
9+
RUN go get github.com/ogier/pflag
10+
11+
ADD . /go/src/github.com/boot2docker/boot2docker-cli
1012

1113
CMD ["make", "all"]

0 commit comments

Comments
 (0)