Merge pull request #236 from cloudflare/go1.10

Use Go 1.10
This commit is contained in:
Łukasz Mierzwa
2018-02-17 19:51:02 -08:00
committed by GitHub
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