From a4f9f15eee73a573acf954910240cb9d9cd51623 Mon Sep 17 00:00:00 2001 From: Eric Chlebek Date: Tue, 18 Jul 2023 13:52:44 -0700 Subject: [PATCH] Don't install curl on amazon2023 Signed-off-by: Eric Chlebek --- Dockerfile.amazon2023 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.amazon2023 b/Dockerfile.amazon2023 index 1e3aead..331d8a7 100644 --- a/Dockerfile.amazon2023 +++ b/Dockerfile.amazon2023 @@ -9,7 +9,7 @@ ADD create-sensu-asset /usr/bin/create-sensu-asset WORKDIR / RUN yum groupinstall -y "Development Tools" && \ - yum install -y curl expat-devel openssl openssl-devel net-snmp-utils bind-utils which procps && \ + yum install -y expat-devel openssl openssl-devel net-snmp-utils bind-utils which procps && \ curl -s -L -O https://www.monitoring-plugins.org/download/monitoring-plugins-2.3.3.tar.gz && \ tar xzf monitoring-plugins-2.3.3.tar.gz && \ cd monitoring-plugins-2.3.3 && \