-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathDockerfile
50 lines (43 loc) · 1.66 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
FROM mcr.microsoft.com/dotnet/core/sdk:3.0.100
# reviewing this choice
ENV SONAR_SCANNER_MSBUILD_VERSION 4.7.1.2311
ENV DOCKER_VERSION 5:19.03.2~3-0~debian-buster
ENV CONTAINERD_VERSION 1.2.6-3
RUN apt-get update \
&& apt-get dist-upgrade -y
# Install all necessary additional software (utils, jre, docker binaries)
RUN apt-get install -y \
openjdk-11-jre \
apt-transport-https \
ca-certificates \
curl \
gnupg-agent \
software-properties-common \
&& curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - \
&& apt-key fingerprint 0EBFCD88 \
&& add-apt-repository \
"deb [arch=amd64] https://download.docker.com/linux/debian \
$(lsb_release -cs) \
stable" \
&& apt-get update \
&& apt-get install -y \
docker-ce=$DOCKER_VERSION \
docker-ce-cli=$DOCKER_VERSION \
containerd.io=$CONTAINERD_VERSION
# install nodejs
RUN curl -sL https://deb.nodesource.com/setup_11.x | bash - \
&& apt-get install -y \
nodejs \
autoconf \
libtool \
nasm
# Install Sonar Scanner
RUN apt-get install -y unzip \
&& wget https://github.com/SonarSource/sonar-scanner-msbuild/releases/download/$SONAR_SCANNER_MSBUILD_VERSION/sonar-scanner-msbuild-$SONAR_SCANNER_MSBUILD_VERSION-netcoreapp2.0.zip \
&& unzip sonar-scanner-msbuild-$SONAR_SCANNER_MSBUILD_VERSION-netcoreapp2.0.zip -d /sonar-scanner \
&& rm sonar-scanner-msbuild-$SONAR_SCANNER_MSBUILD_VERSION-netcoreapp2.0.zip \
&& chmod +x -R /sonar-scanner
# Cleanup
RUN apt-get -q autoremove \
&& apt-get -q clean -y \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/*.bin