Improved apt-get installation of curl and wget 42/6642/1
authorBjornMagnussonXA <bjorn.magnusson@est.tech>
Tue, 31 Aug 2021 21:44:10 +0000 (23:44 +0200)
committerBjörn Magnusson <bjorn.magnusson@est.tech>
Wed, 1 Sep 2021 07:04:58 +0000 (07:04 +0000)
Issue-ID: NONRTRIC-573

Signed-off-by: BjornMagnussonXA <bjorn.magnusson@est.tech>
Change-Id: I41a3fa20255c2602845fa821afbdcd942f47ac69

helm-manager/Dockerfile

index cd44c90..2b1536f 100644 (file)
@@ -19,10 +19,8 @@ FROM openjdk:11-jre-slim
 
 ARG JAR
 
-#Install curl
-RUN apt-get update
-RUN apt-get install -y curl
-RUN apt-get install -y wget
+#Install curl and wget
+RUN apt-get upgrade && apt-get update && apt-get install -y curl wget
 
 #Install helm
 RUN wget -O helm.tar.gz https://get.helm.sh/helm-v3.6.1-linux-amd64.tar.gz