Create Dockerfile
This commit is contained in:
commit
cdeaedd7c2
1 changed files with 10 additions and 0 deletions
10
Dockerfile
Normal file
10
Dockerfile
Normal file
|
@ -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
|
Loading…
Reference in a new issue