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/* && \