From 42c22d78566e89c816e55e49e910344a57eeada8 Mon Sep 17 00:00:00 2001 From: Radoslaw Wicik Date: Mon, 18 Jan 2021 10:32:03 +0100 Subject: [PATCH] [EGD-5270] Add packages rhash, tar, zip to docker image These packages are required for building packages, standalone and update one. --- config/bootstrap_config | 3 +++ in_docker.sh | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/config/bootstrap_config b/config/bootstrap_config index 57f2127a3427785f81b713700f6078862eda5fe9..b0027a511d58bcf3aae784e2cdfc34f740eb51ee 100644 --- a/config/bootstrap_config +++ b/config/bootstrap_config @@ -51,8 +51,11 @@ INSTALL_PACKAGES=" python3-magic \ python3-pip \ python3-requests \ + rhash \ tzdata \ + tar \ vim \ wget \ + zip \ " diff --git a/in_docker.sh b/in_docker.sh index 66642a8800d7c72b9858be5542d6679537f5103e..0b21b35df461f91052b615c4a004923b0d64518e 100755 --- a/in_docker.sh +++ b/in_docker.sh @@ -3,7 +3,7 @@ # For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md CONTAINER_NAME="wearemudita/mudita_os_builder" -CONTAINER_TAG="1.7" +CONTAINER_TAG="1.8" CONTAINER=${CONTAINER_NAME}:${CONTAINER_TAG} PURE_HOME=`pwd` STANDARD_OPTIONS="-v `pwd`:${PURE_HOME} --user \"$(id -u):$(id -g)\" --env HOME=${PURE_HOME} -t"