From f4697af90a528e3b1921fe6247edf44db01e49ea Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Mon, 5 Feb 2024 15:21:09 +0900 Subject: [PATCH] Updated Go lang to 1.21 for Ubuntu --- Dockerfiles/build-base/ubuntu/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfiles/build-base/ubuntu/Dockerfile b/Dockerfiles/build-base/ubuntu/Dockerfile index 032c70d29..21874f1a2 100644 --- a/Dockerfiles/build-base/ubuntu/Dockerfile +++ b/Dockerfiles/build-base/ubuntu/Dockerfile @@ -6,7 +6,7 @@ ARG ZBX_VERSION=${MAJOR_VERSION} ENV TERM=xterm \ ZBX_VERSION=${ZBX_VERSION} \ - PATH=/usr/lib/go-1.20/bin:$PATH + PATH=/usr/lib/go-1.21/bin:$PATH LABEL org.opencontainers.image.authors="Alexey Pustovalov " \ org.opencontainers.image.description="Zabbix build base image contains all required packages to build Zabbix images" \ @@ -43,7 +43,7 @@ RUN set -eux && \ pkg-config \ gettext \ git \ - golang-1.20 \ + golang-1.21 \ unzip \ unixodbc-dev" && \ apt-get -y update && \