From 2108c8f0b319c4182d718308ad3d6eb669a20a35 Mon Sep 17 00:00:00 2001 From: Joshua Humphries Date: Fri, 15 May 2020 08:21:08 -0400 Subject: [PATCH] use go 1.13 to build docker image (#160) --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0f71406..c2b15bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,6 @@ -FROM golang:1.11.10-alpine as builder +FROM golang:1.13.10-alpine3.11 as builder MAINTAINER FullStory Engineering -# currently, a module build requires gcc (so Go tool can build -# module-aware versions of std library; it ships only w/ the -# non-module versions) -RUN apk update && apk add --no-cache ca-certificates git gcc g++ libc-dev # create non-privileged group and user RUN addgroup -S grpcurl && adduser -S grpcurl -G grpcurl