From 4f5b47d35c2948212a060e4ab8e3a4213c054e4b Mon Sep 17 00:00:00 2001 From: Alexey Pustovalov Date: Tue, 27 Apr 2021 16:47:11 -0400 Subject: [PATCH] Use g++ package instead of gcc --- agent2/ubuntu/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/agent2/ubuntu/Dockerfile b/agent2/ubuntu/Dockerfile index 169296e2c..471b26f98 100644 --- a/agent2/ubuntu/Dockerfile +++ b/agent2/ubuntu/Dockerfile @@ -67,7 +67,7 @@ RUN set -eux && \ make \ pkg-config \ git \ - gcc \ + g++ \ golang && \ cd /tmp/ && \ git clone ${ZBX_SOURCES} --branch master --depth 1 --single-branch zabbix-${ZBX_VERSION} && \ @@ -106,7 +106,7 @@ RUN set -eux && \ make \ pkg-config \ git \ - gcc \ + g++ \ golang && \ chown --quiet -R zabbix:root /etc/zabbix/ /var/lib/zabbix/ && \ chgrp -R 0 /etc/zabbix/ /var/lib/zabbix/ && \