From ffc65e21ef3e2dbfa74a4f7a0c3819a693203814 Mon Sep 17 00:00:00 2001 From: Boming Zhang Date: Wed, 6 Nov 2024 18:02:34 -0500 Subject: [PATCH] fix: sources.list --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 0d6e57e..dd0093b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG GO_VERSION=1.23.1 ARG GOLANGCI_LINT_VERSION=1.61.0 ENV PATH=$PATH:/usr/local/go/bin:/root/go/bin -RUN sed -i s@/deb.debian.org/@/mirrors.tuna.tsinghua.edu.cn/@g /etc/apt/sources.list.d/debian.sources && \ +RUN sed -i s@/archive.ubuntu.com/@/mirrors.tuna.tsinghua.edu.cn/@g /etc/apt/sources.list && \ apt-get update && \ apt-get install -y --no-install-recommends upx && \ apt-get clean && \