diff --git a/release/community-stable/archlinux/docker/Dockerfile b/release/community-stable/archlinux/docker/Dockerfile index cb0fd614e..02647aa32 100644 --- a/release/community-stable/archlinux/docker/Dockerfile +++ b/release/community-stable/archlinux/docker/Dockerfile @@ -55,7 +55,7 @@ RUN \ # create powershell folder && mkdir -p ${PS_INSTALL_FOLDER} \ # uncompress powershell linux tar file - && tar zxf /tmp/powershell-linux.tar.gz -C ${PS_INSTALL_FOLDER} \ + && tar zxf /tmp/powershell-linux.tar.gz -C ${PS_INSTALL_FOLDER} -v \ # remove powershell linux tar file && rm -f /tmp/powershell-linux.tar.gz \ # Create the pwsh symbolic link that points to powershell diff --git a/release/preview/alpine38/docker/Dockerfile b/release/preview/alpine38/docker/Dockerfile index d18790e7d..bae951ceb 100644 --- a/release/preview/alpine38/docker/Dockerfile +++ b/release/preview/alpine38/docker/Dockerfile @@ -25,7 +25,7 @@ ENV PS_INSTALL_FOLDER=/opt/microsoft/powershell/$PS_INSTALL_VERSION RUN mkdir -p ${PS_INSTALL_FOLDER} # Unzip the Linux tar.gz -RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} +RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} -v # Start a new stage so we lose all the tar.gz layers from the final image FROM ${imageRepo}:${fromTag} diff --git a/release/preview/alpine39/docker/Dockerfile b/release/preview/alpine39/docker/Dockerfile index 4c2a5b4e3..b4ac0c81d 100644 --- a/release/preview/alpine39/docker/Dockerfile +++ b/release/preview/alpine39/docker/Dockerfile @@ -25,7 +25,7 @@ ENV PS_INSTALL_FOLDER=/opt/microsoft/powershell/$PS_INSTALL_VERSION RUN mkdir -p ${PS_INSTALL_FOLDER} # Unzip the Linux tar.gz -RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} +RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} -v # Start a new stage so we lose all the tar.gz layers from the final image FROM ${imageRepo}:${fromTag} diff --git a/release/preview/opensuse423/docker/Dockerfile b/release/preview/opensuse423/docker/Dockerfile index c5dd8e378..caa6e0aa6 100644 --- a/release/preview/opensuse423/docker/Dockerfile +++ b/release/preview/opensuse423/docker/Dockerfile @@ -31,7 +31,7 @@ RUN zypper --non-interactive install \ ADD ${PS_PACKAGE_URL} /tmp/linux.tar.gz # Unzip the Linux tar.gz -RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} +RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} -v # ------ Second stage ------ # Start a new stage so we lose all the tar.gz layers from the final image diff --git a/release/stable/alpine/docker/Dockerfile b/release/stable/alpine/docker/Dockerfile index 21a0b3bb9..ab20302d2 100644 --- a/release/stable/alpine/docker/Dockerfile +++ b/release/stable/alpine/docker/Dockerfile @@ -25,7 +25,7 @@ ENV PS_INSTALL_FOLDER=/opt/microsoft/powershell/$PS_INSTALL_VERSION RUN mkdir -p ${PS_INSTALL_FOLDER} # Unzip the Linux tar.gz -RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} +RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} -v # Start a new stage so we lose all the tar.gz layers from the final image FROM ${imageRepo}:${fromTag} diff --git a/release/stable/opensuse423/docker/Dockerfile b/release/stable/opensuse423/docker/Dockerfile index 2b68220cc..b51289511 100644 --- a/release/stable/opensuse423/docker/Dockerfile +++ b/release/stable/opensuse423/docker/Dockerfile @@ -31,7 +31,7 @@ RUN zypper --non-interactive install \ ADD ${PS_PACKAGE_URL} /tmp/linux.tar.gz # Unzip the Linux tar.gz -RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} +RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} -v # ------ Second stage ------ # Start a new stage so we lose all the tar.gz layers from the final image