Use Go 1.10

Use Go 1.10 when testing/releasing on Travis and building docker images
This commit is contained in:
Łukasz Mierzwa
2018-02-16 21:42:14 +00:00
parent 4efd9ea804
commit 7629813add
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
defaults_go: &DEFAULTS_GO
language: go
go: "1.9.2"
go: "1.10"
cache:
directories:
- vendor

View File

@@ -3,7 +3,7 @@ RUN apk add --update make git
COPY . /unsee
RUN make -C /unsee webpack
FROM golang:1.9.2-alpine3.6 as go-builder
FROM golang:1.10-alpine as go-builder
COPY --from=nodejs-builder /unsee /go/src/github.com/cloudflare/unsee
ARG VERSION
RUN apk add --update make git