commit cdeaedd7c277948c70dd403b84da118566731c96 Author: Guillaume "B.B." Van Hemmen Date: Sat Mar 16 21:09:37 2019 +0100 Create Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..be7514a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM debian:stretch + +LABEL maintainer="guillaume@van-hemmen.com" + +RUN apt-get update && \ + apt-get -y install wget unzip && \ + cd /root/ && \ + wget https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-3.3.0.1492-linux.zip && \ + unzip sonar-scanner-cli-3.3.0.1492-linux.zip && \ + ln -sf /root/sonar-scanner-3.3.0.1492-linux/bin/sonar-scanner /usr/local/bin/sonar-scanner