Add unzip and print installed packages

This commit is contained in:
hackercat
2021-01-21 15:05:48 +00:00
parent 2ff13ae3fe
commit 77bb67bd0b
2 changed files with 4 additions and 2 deletions
+2 -1
View File
@@ -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/* && \
+2 -1
View File
@@ -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/* && \