From 741842ca34d71c006cf2cad06447cd2c0737baa6 Mon Sep 17 00:00:00 2001 From: thelamer Date: Thu, 8 Aug 2019 09:39:45 -0700 Subject: [PATCH] adding zip and unzip --- Dockerfile | 4 +++- Dockerfile.aarch64 | 4 +++- Dockerfile.armhf | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4b36ea5..04900fa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,9 @@ RUN \ curl \ git \ gnupg \ - sudo && \ + sudo \ + unzip \ + zip && \ echo "**** Cleanup and user perms ****" && \ usermod -aG sudo \ abc && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 3e03a13..065a115 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -17,7 +17,9 @@ RUN \ curl \ git \ gnupg \ - sudo && \ + sudo \ + unzip \ + zip && \ echo "**** Cleanup and user perms ****" && \ usermod -aG sudo \ abc && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 0bc34c2..d83fa58 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -17,7 +17,9 @@ RUN \ curl \ git \ gnupg \ - sudo && \ + sudo \ + unzip \ + zip && \ echo "**** Cleanup and user perms ****" && \ usermod -aG sudo \ abc && \