Skip to content

Commit

Permalink
Replace tabs with spaces #2604
Browse files Browse the repository at this point in the history
  • Loading branch information
winzj authored and haerter-tss committed Nov 14, 2023
1 parent 9c37895 commit 7868d8e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions sechub-pds-solutions/owaspzap/docker/Owasp-Zap-Debian.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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" && \
Expand Down

0 comments on commit 7868d8e

Please sign in to comment.