File tree Expand file tree Collapse file tree 6 files changed +6
-6
lines changed
Expand file tree Collapse file tree 6 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 5555 # create powershell folder
5656 && mkdir -p ${PS_INSTALL_FOLDER} \
5757 # uncompress powershell linux tar file
58- && tar zxf /tmp/powershell-linux.tar.gz -C ${PS_INSTALL_FOLDER} \
58+ && tar zxf /tmp/powershell-linux.tar.gz -C ${PS_INSTALL_FOLDER} -v \
5959 # remove powershell linux tar file
6060 && rm -f /tmp/powershell-linux.tar.gz \
6161 # Create the pwsh symbolic link that points to powershell
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ ENV PS_INSTALL_FOLDER=/opt/microsoft/powershell/$PS_INSTALL_VERSION
2525RUN mkdir -p ${PS_INSTALL_FOLDER}
2626
2727# Unzip the Linux tar.gz
28- RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER}
28+ RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} -v
2929
3030# Start a new stage so we lose all the tar.gz layers from the final image
3131FROM ${imageRepo}:${fromTag}
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ ENV PS_INSTALL_FOLDER=/opt/microsoft/powershell/$PS_INSTALL_VERSION
2525RUN mkdir -p ${PS_INSTALL_FOLDER}
2626
2727# Unzip the Linux tar.gz
28- RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER}
28+ RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} -v
2929
3030# Start a new stage so we lose all the tar.gz layers from the final image
3131FROM ${imageRepo}:${fromTag}
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ RUN zypper --non-interactive install \
3131ADD ${PS_PACKAGE_URL} /tmp/linux.tar.gz
3232
3333# Unzip the Linux tar.gz
34- RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER}
34+ RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} -v
3535
3636# ------ Second stage ------
3737# Start a new stage so we lose all the tar.gz layers from the final image
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ ENV PS_INSTALL_FOLDER=/opt/microsoft/powershell/$PS_INSTALL_VERSION
2525RUN mkdir -p ${PS_INSTALL_FOLDER}
2626
2727# Unzip the Linux tar.gz
28- RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER}
28+ RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} -v
2929
3030# Start a new stage so we lose all the tar.gz layers from the final image
3131FROM ${imageRepo}:${fromTag}
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ RUN zypper --non-interactive install \
3131ADD ${PS_PACKAGE_URL} /tmp/linux.tar.gz
3232
3333# Unzip the Linux tar.gz
34- RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER}
34+ RUN tar zxf /tmp/linux.tar.gz -C ${PS_INSTALL_FOLDER} -v
3535
3636# ------ Second stage ------
3737# Start a new stage so we lose all the tar.gz layers from the final image
You can’t perform that action at this time.
0 commit comments