From f76900dda9011f06fd4b224b4de2a48f84f12fc6 Mon Sep 17 00:00:00 2001 From: cyl19970726 <15258378443@163.com> Date: Fri, 8 Mar 2024 22:19:04 +0800 Subject: [PATCH] update go install source in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 38ce58675..a97b9f59b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,7 +15,7 @@ ENV PATH="/root/.cargo/bin:${PATH}" # Install Golang ENV GOLANG_VERSION 1.21.1 -RUN curl -L https://golang.org/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz | tar -xz -C /usr/local +RUN curl -L https://go.dev/dl/go${GOLANG_VERSION}.linux-amd64.tar.gz | tar -xz -C /usr/local ENV PATH="/usr/local/go/bin:${PATH}" # Set the working directory in the container