From 7629813add49d392a3db7fb6e06fd7b75e371b1c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Mierzwa?= Date: Fri, 16 Feb 2018 21:42:14 +0000 Subject: [PATCH] Use Go 1.10 Use Go 1.10 when testing/releasing on Travis and building docker images --- .travis.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2654a85bf..3b53278da 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,6 @@ defaults_go: &DEFAULTS_GO language: go - go: "1.9.2" + go: "1.10" cache: directories: - vendor diff --git a/Dockerfile b/Dockerfile index 679402480..076ea0ffc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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