From 003510c097e29cdb90fea5cceb30b0ef867d4090 Mon Sep 17 00:00:00 2001 From: NickyMateev Date: Mon, 30 Dec 2019 11:11:04 +0200 Subject: [PATCH] Downgrade to Go 1.11 --- .travis.yml | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 369255cd..a277df59 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: go go: - - 1.12.x + - 1.11.x # set tag for helm chart env: diff --git a/Dockerfile b/Dockerfile index 0a5cc874..5cc29849 100755 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ # docker container. The alpine build image has to match # the alpine image in the referencing runtime container. ######################################################### -FROM golang:1.12.13-alpine3.10 AS builder +FROM golang:1.11.13-alpine3.10 AS builder # We need so that dep can fetch it's dependencies # RUN apk --no-cache add git