You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
410 B
14 lines
410 B
FROM mcr.microsoft.com/dotnet/sdk:8.0
|
|
RUN dotnet tool install --global dotnet-sonarscanner
|
|
RUN dotnet tool install --global dotnet-reportgenerator-globaltool
|
|
ENV PATH="$PATH:/root/.dotnet/tools"
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y openjdk-11-jre-headless \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
ENV PATH="$PATH:/usr/lib/jvm/java-11-openjdk-amd64/bin/"
|
|
|
|
WORKDIR /build
|
|
|
|
COPY . ./ |