Skip to content

Commit c00fd9a

Browse files
dmitshurbradfitz
authored andcommitted
http2/h2demo: deploy with Go 1.13
Update the base image to Go 1.13. It is the latest Go release and it has TLS 1.3 on by default. Remove the explicit setting of GOPROXY to https://proxy.golang.org, since that value is already the default in Go 1.13. Change-Id: I0d9b684a7f53d27d21b0f92b300ec64d4d47e1fe Reviewed-on: https://go-review.googlesource.com/c/net/+/196139 Reviewed-by: Brad Fitzpatrick <[email protected]>
1 parent aa69164 commit c00fd9a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

http2/h2demo/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,10 @@
22
# Use of this source code is governed by a BSD-style
33
# license that can be found in the LICENSE file.
44

5-
FROM golang:1.12 AS build
5+
FROM golang:1.13 AS build
66
LABEL maintainer "[email protected]"
77

88
ENV GO111MODULE=on
9-
ENV GOPROXY=https://proxy.golang.org
109

1110
RUN mkdir /gocache
1211
ENV GOCACHE /gocache

0 commit comments

Comments
 (0)