Skip to content

Commit

Permalink
Upgrade Ubuntu version (and golang version) in builder
Browse files Browse the repository at this point in the history
Travis builds were failing because Ubuntu 16.10 could not find all of
it's package repository indexes. Using a newer version of Ubuntu
resolved that issue. go package revs from 1.6.3 -> 1.8.3
  • Loading branch information
jesselang committed Feb 10, 2018
1 parent 1c220f9 commit 6385e03
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.builder
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM ubuntu:16.10
FROM ubuntu:17.10

# This is actually Go 1.6.3, despite appearances (as determined by
# This is actually Go 1.8.3, despite appearances (as determined by
# running `go version`)
ENV GO_PACKAGE_VERSION 2:1.6.1+1ubuntu2
ENV GO_PACKAGE_VERSION 2:1.8~1ubuntu1
ENV GOPATH /gopath
ENV PATH=${GOPATH}/bin:${PATH}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

## Dependencies

* Go v1.6+
* Go v1.9+
* Docker v1.10.3+

## Getting up and running
Expand Down
2 changes: 1 addition & 1 deletion scripts/smoke_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ docker rm "${container_id}"

chmod a+x "${executable_name}"

for PLATFORM in alpine:3.4 ubuntu:16.10
for PLATFORM in alpine:3.4 ubuntu:17.10
do
echo "--- Running ${executable_name} on ${PLATFORM}"
set -x
Expand Down

0 comments on commit 6385e03

Please sign in to comment.