From 89a135307365aadbc9e44baa593d5edfcee8474c Mon Sep 17 00:00:00 2001 From: Suyash Kumar Date: Wed, 5 Feb 2020 22:05:59 -0800 Subject: [PATCH] Update Docker build to use Go 1.13.7 (#26) This updates the Docker image to use Go 1.13.7, as Go 1.13+ is now required after #22. The GitHub actions CI was already using Go 1.13 so this was not caught there. If we will continue to maintain a Docker image to build ssl-proxy, some work should go into testing this docker build using GitHub actions as well! Separately, we should investigate building against Go 1.14. This closes #25. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6cabbe2..5928a5a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.12-alpine3.9 +FROM golang:1.13.7-alpine3.11 WORKDIR /go/src/github.com/suyashkumar/ssl-proxy RUN apk add --no-cache make git zip RUN go get -u github.com/golang/dep/cmd/dep