From 34c14ed2b2e5d9de43abfb7fefd9ec99a03037c6 Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Thu, 9 Nov 2023 14:55:30 +0900 Subject: [PATCH] Fixed CentOS building process. GOPROXY env variable specified to direct --- Dockerfiles/build-base/centos/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfiles/build-base/centos/Dockerfile b/Dockerfiles/build-base/centos/Dockerfile index ac334ec69..c2d2933ce 100644 --- a/Dockerfiles/build-base/centos/Dockerfile +++ b/Dockerfiles/build-base/centos/Dockerfile @@ -6,7 +6,8 @@ ARG ZBX_VERSION=${MAJOR_VERSION}.8 ENV TERM=xterm \ ZBX_VERSION=${ZBX_VERSION} \ - PATH=/usr/local/go/bin:$PATH + PATH=/usr/local/go/bin:$PATH \ + GOPROXY=direct LABEL org.opencontainers.image.authors="Alexey Pustovalov " \ org.opencontainers.image.description="Zabbix build base image contains all required packages to build Zabbix images" \