From b3f0c586ff2f455d71a471aba3006290f387798e Mon Sep 17 00:00:00 2001 From: Semir Patel Date: Mon, 17 Oct 2022 14:09:17 -0500 Subject: [PATCH] test curl removal --- control-plane/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/control-plane/Dockerfile b/control-plane/Dockerfile index 802ec4fab2..1d99ca3729 100644 --- a/control-plane/Dockerfile +++ b/control-plane/Dockerfile @@ -37,7 +37,7 @@ LABEL name=${BIN_NAME} \ ENV BIN_NAME=${BIN_NAME} ENV VERSION=${VERSION} -RUN apk add --no-cache ca-certificates curl gnupg libcap openssl su-exec iputils libc6-compat iptables +RUN apk add --no-cache ca-certificates gnupg libcap openssl su-exec iputils libc6-compat iptables # Create a non-root user to run the software. RUN addgroup ${BIN_NAME} && \ @@ -84,7 +84,7 @@ LABEL name=${BIN_NAME} \ ENV BIN_NAME=${BIN_NAME} ENV VERSION=${PRODUCT_VERSION} -RUN apk add --no-cache ca-certificates curl gnupg libcap openssl su-exec iputils libc6-compat iptables +RUN apk add --no-cache ca-certificates gnupg libcap openssl su-exec iputils libc6-compat iptables # TARGETOS and TARGETARCH are set automatically when --platform is provided. ARG TARGETOS