From 744e25ef2319d6b00dc0847af22c6181014e1fee Mon Sep 17 00:00:00 2001 From: Brandon Palm Date: Tue, 17 May 2022 07:59:41 -0500 Subject: [PATCH] Upgrade Go to v1.18.2 (#116) --- test-partner/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test-partner/Dockerfile b/test-partner/Dockerfile index 9b0e06e0..d824dbb4 100644 --- a/test-partner/Dockerfile +++ b/test-partner/Dockerfile @@ -4,7 +4,7 @@ RUN yum install -y wget make hostname iproute iputils openssh openssh-clients po # Install Go binary ENV GO_DL_URL="https://golang.org/dl" -ENV GO_BIN_TAR="go1.18.1.linux-amd64.tar.gz" +ENV GO_BIN_TAR="go1.18.2.linux-amd64.tar.gz" ENV GO_BIN_URL_x86_64=${GO_DL_URL}/${GO_BIN_TAR} ENV GOPATH="/root/go" RUN if [[ "$(uname -m)" -eq "x86_64" ]] ; then \