Skip installation of curl in helm-manager
[nonrtric.git] / helm-manager / Dockerfile
index c7de28a..a70af54 100644 (file)
@@ -19,8 +19,8 @@ FROM openjdk:11-jre-slim
 
 ARG JAR
 
-#Install curl and wget
-RUN apt-get update && apt-get install -y --no-install-recommends curl wget && rm -rf /var/lib/apt/lists/*
+#Install wget
+RUN apt-get update && apt-get install -y wget
 
 #Install helm
 RUN wget -O helm.tar.gz https://get.helm.sh/helm-v3.6.1-linux-amd64.tar.gz
@@ -28,7 +28,7 @@ RUN tar -zxvf helm.tar.gz
 RUN mv linux-amd64/helm /usr/local/bin/helm
 
 #Install kubectl and configure
-RUN curl -LO https://dl.k8s.io/release/v1.20.2/bin/linux/amd64/kubectl
+RUN wget https://dl.k8s.io/release/v1.20.2/bin/linux/amd64/kubectl
 
 RUN chmod +x ./kubectl