From 1fbea6cf2da0a746978c7ba12356ea5a0f703352 Mon Sep 17 00:00:00 2001 From: francisco souza Date: Thu, 22 Aug 2019 22:03:26 -0700 Subject: [PATCH] Dockerfile: use Go 1.13rc1 as the base image in the build stage --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ea6551c..e41f56e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ -FROM golang:1.12.9-alpine AS build +FROM golang:1.13rc1-alpine AS build -ARG GOPROXY=https://proxy.golang.org +ARG GOPROXY=https://proxy.golang.org,https://gocenter.io,direct ENV CGO_ENABLED 0 WORKDIR /code