File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,13 @@ RUN set -x \
49
49
# Donwload pkgs needed in container
50
50
&& apk add --no-cache composer wget zip unzip git bash iptables sed docker jq curl kmod \
51
51
# Download zstd
52
- && wget -q -O zstd-cli-linux.tar.gz "https://github.com/screwdriver-cd/sd-packages/releases/download/v0.0.30/zstd-cli-linux-aarch64.tar.gz"
52
+ && wget -q -O zstd-cli-linux.tar.gz "https://github.com/screwdriver-cd/sd-packages/releases/download/v0.0.30/zstd-cli-linux-aarch64.tar.gz" \
53
+ # Download sonar scanner cli any
54
+ && wget -O sonarscanner-cli-any.zip "https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-5.0.1.3006.zip" \
55
+ && unzip -q sonarscanner-cli-any.zip \
56
+ && mv sonar-scanner-*-any sonarscanner-cli-macosx-arm64 \
57
+ # Cleanup
58
+ && rm -rf /opt/sd/sonarscanner-cli-any.zip /opt/sd/sonar-scanner-*-any
53
59
54
60
# Install common dependencies by target architcture
55
61
FROM base-${TARGETARCH} AS final
You can’t perform that action at this time.
0 commit comments