From a97e9d5ae1d31cfc6ba371d714bbdd9036b585b0 Mon Sep 17 00:00:00 2001 From: Danny Berger Date: Tue, 6 Mar 2018 22:24:24 -0800 Subject: [PATCH] Switch to go/1.10 --- ci/images/build/Dockerfile | 2 +- ci/images/unit/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/images/build/Dockerfile b/ci/images/build/Dockerfile index 5e65b6f..950cd0c 100644 --- a/ci/images/build/Dockerfile +++ b/ci/images/build/Dockerfile @@ -1,4 +1,4 @@ -FROM ubuntu:xenial +FROM golang:1.10-stretch RUN true \ && apt-get update \ && apt-get install -y curl git openssl \ diff --git a/ci/images/unit/Dockerfile b/ci/images/unit/Dockerfile index a4ffd74..e93666e 100644 --- a/ci/images/unit/Dockerfile +++ b/ci/images/unit/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.8.1-alpine +FROM golang:1.10-alpine RUN true \ && apk --no-cache add bash ca-certificates curl git openssl \ && go get github.com/mattn/goveralls \