Skip to content
This repository was archived by the owner on Feb 27, 2018. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: go

# this should be exactly the same as what's in the Dockerfile
go: 1.3
go: 1.4

# let us have pretty experimental Docker-based Travis workers
sudo: false
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# Dockerfile to cross compile boot2docker-cli

FROM golang:1.3-cross
FROM golang:1.4-cross

WORKDIR /go/src/github.com/boot2docker/boot2docker-cli

# Download (but not install) dependencies
RUN go get -v github.com/BurntSushi/toml
RUN go get -v github.com/ogier/pflag
RUN go get -v github.com/ogier/pflag

ADD . /go/src/github.com/boot2docker/boot2docker-cli

Expand Down