From 7868d8efa5e067789fb907624580b0a848a65d6a Mon Sep 17 00:00:00 2001 From: Jan Winz Date: Mon, 23 Oct 2023 14:11:05 +0200 Subject: [PATCH] Replace tabs with spaces #2604 --- .../owaspzap/docker/Owasp-Zap-Debian.dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/sechub-pds-solutions/owaspzap/docker/Owasp-Zap-Debian.dockerfile b/sechub-pds-solutions/owaspzap/docker/Owasp-Zap-Debian.dockerfile index da0bc7bc91..1d151fba8d 100644 --- a/sechub-pds-solutions/owaspzap/docker/Owasp-Zap-Debian.dockerfile +++ b/sechub-pds-solutions/owaspzap/docker/Owasp-Zap-Debian.dockerfile @@ -39,15 +39,15 @@ RUN export DEBIAN_FRONTEND=noninteractive && \ # Download ZAP RUN cd "$DOWNLOAD_FOLDER" && \ - # download latest release of zap - wget --no-verbose https://github.com/zaproxy/zaproxy/releases/download/v${OWASPZAP_VERSION}/ZAP_${OWASPZAP_VERSION}_Linux.tar.gz && \ - # verify that the checksum and the checksum of the file are same + # download latest release of zap + wget --no-verbose https://github.com/zaproxy/zaproxy/releases/download/v${OWASPZAP_VERSION}/ZAP_${OWASPZAP_VERSION}_Linux.tar.gz && \ + # verify that the checksum and the checksum of the file are same echo "${OWASPZAP_SHA256SUM} ZAP_${OWASPZAP_VERSION}_Linux.tar.gz" | sha256sum --check && \ # install ZAP - tar xf ZAP_${OWASPZAP_VERSION}_Linux.tar.gz -C "$TOOL_FOLDER" && \ - ln -s "$TOOL_FOLDER/ZAP_${OWASPZAP_VERSION}/zap.sh" "/usr/local/bin/zap" && \ - # remove plugins installed on default - rm $TOOL_FOLDER/ZAP_${OWASPZAP_VERSION}/plugin/*.zap + tar xf ZAP_${OWASPZAP_VERSION}_Linux.tar.gz -C "$TOOL_FOLDER" && \ + ln -s "$TOOL_FOLDER/ZAP_${OWASPZAP_VERSION}/zap.sh" "/usr/local/bin/zap" && \ + # remove plugins installed on default + rm $TOOL_FOLDER/ZAP_${OWASPZAP_VERSION}/plugin/*.zap # Install SecHub OWASP ZAP wrapper RUN cd "$TOOL_FOLDER" && \