From 5483884a46cfb70a40dd9b6bf508c171f7d9d191 Mon Sep 17 00:00:00 2001 From: Keshav-NEC Date: Wed, 6 Sep 2023 14:14:52 +0000 Subject: [PATCH] Add curl and tar tool --- CHANGES_NEXT_RELEASE | 1 + docker/Dockerfile | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES_NEXT_RELEASE b/CHANGES_NEXT_RELEASE index f5f0d296..4696e6eb 100644 --- a/CHANGES_NEXT_RELEASE +++ b/CHANGES_NEXT_RELEASE @@ -1 +1,2 @@ +- Fix: add curl and tar tools inside all docker telefonicaid objects (#600) - Fix: ensure device apikey in already provisioned device (iota-node-lib#1430) diff --git a/docker/Dockerfile b/docker/Dockerfile index 7b4f432d..5cce31c2 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -63,7 +63,7 @@ RUN \ apt-get update -y && \ apt-get upgrade -y && \ # Ensure that unzip is installed prior to downloading - apt-get install -y --no-install-recommends unzip && \ + apt-get install -y --no-install-recommends unzip tar curl && \ if [ "${DOWNLOAD}" = "latest" ] ; \ then \ RELEASE="${SOURCE_BRANCH}"; \ @@ -84,6 +84,8 @@ RUN \ # Remove unzip and clean apt cache apt-get clean && \ apt-get remove -y unzip && \ + # Remove curl and clean apt cache + apt-get remove -y curl && \ apt-get -y autoremove && \ rm -rf /var/lib/apt/lists/*