From 77bb67bd0b24618d4806406aabadc6d570cb5eb6 Mon Sep 17 00:00:00 2001 From: hackercat Date: Thu, 21 Jan 2021 15:05:48 +0000 Subject: [PATCH] Add unzip and print installed packages --- linux/ubuntu/act/Dockerfile | 3 ++- linux/ubuntu/runner/Dockerfile | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/linux/ubuntu/act/Dockerfile b/linux/ubuntu/act/Dockerfile index 1088522..9a42358 100644 --- a/linux/ubuntu/act/Dockerfile +++ b/linux/ubuntu/act/Dockerfile @@ -37,8 +37,9 @@ RUN set -Eeuxo pipefail && \ RUN set -Eeuxo pipefail && \ apt -yq update && \ printf "Updated apt lists and upgraded packages\n\n" && \ - apt -yq install --no-install-recommends ssh lsb-release gawk jq curl git wget sudo gnupg-agent ca-certificates software-properties-common apt-transport-https libyaml-0-2 zstd && \ + apt -yq install --no-install-recommends ssh lsb-release gawk jq curl git wget sudo gnupg-agent ca-certificates software-properties-common apt-transport-https libyaml-0-2 zstd unzip && \ printf "Installed base utils" && \ + dpkg-query -f '${binary:Package}\n' -W && \ printf "Cleaning image" && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* && \ diff --git a/linux/ubuntu/runner/Dockerfile b/linux/ubuntu/runner/Dockerfile index 9110f8b..e6545f4 100644 --- a/linux/ubuntu/runner/Dockerfile +++ b/linux/ubuntu/runner/Dockerfile @@ -39,8 +39,9 @@ RUN set -Eeuxo pipefail && \ printf "Build started" && \ apt -yq update && \ printf "Updated apt lists and upgraded packages\n\n" && \ - apt -yq install --no-install-recommends lsb-release gawk jq curl git wget sudo gnupg-agent ca-certificates software-properties-common apt-transport-https zstd && \ + apt -yq install --no-install-recommends lsb-release gawk jq curl git wget sudo gnupg-agent ca-certificates software-properties-common apt-transport-https zstd unzip && \ printf "Installed base utils" && \ + dpkg-query -f '${binary:Package}\n' -W && \ printf "Cleaning image" && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* && \