From 93e71d78008e4873a90c95febe199c888a9cf615 Mon Sep 17 00:00:00 2001 From: xxqfamous Date: Tue, 23 May 2023 18:26:04 +0800 Subject: [PATCH] Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 96c86f1..10bd599 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM bitnami/git:latest RUN sed -i 's/deb.debian.org/mirrors.tuna.tsinghua.edu.cn/g' /etc/apt/sources.list RUN apt update RUN apt install -y vim nano curl wget -RUN wget http://go.dev/dl/go1.20.4.linux-amd64.tar.gz +RUN wget https://go.dev/dl/go1.20.4.linux-amd64.tar.gz RUN tar -C /usr/local -xzf go1.20.4.linux-amd64.tar.gz ENV PATH=$PATH:/usr/local/go/bin RUN go version