2019-12-26 18:23:25 +03:00
# Multi-stage Docker build, test and package
# Based on https://github.com/dotnet/dotnet-docker/blob/master/samples/dotnetapp/dotnet-docker-unit-testing.md
ARG DOTNET_VERSION = 3 .0
FROM mcr.microsoft.com/dotnet/core/sdk:$DOTNET_VERSION AS build
2019-10-28 12:49:16 +03:00
WORKDIR /app
2019-12-26 18:23:25 +03:00
# Copy csproj and restore as distinct layers. This caches a Docker layer with downloaded
# dependencies, making the next build faster if only code files have been changed.
2019-10-28 12:49:16 +03:00
COPY K2Bridge/*.csproj ./
RUN dotnet restore
# Copy everything else and build
2019-12-26 18:23:25 +03:00
COPY . ./
RUN dotnet publish K2Bridge -c Release -o out
2020-01-14 14:58:39 +03:00
# Run unit tests. "exit 0" prevents failing build on test failures.
# (dotnet test returns a non-zero exit code on test failures, which would stop the docker build otherwise)
2020-01-15 14:08:19 +03:00
RUN dotnet test K2Bridge.Tests.UnitTests --logger "trx;LogFileName=/app/TestResult.xml" /p:CollectCoverage= true /p:CoverletOutputFormat= cobertura ; exit 0
2020-01-14 14:58:39 +03:00
# Fail build if no test result file produced (indicates an issue with the test runner itself)
RUN test -s /app/TestResult.xml
2019-10-28 12:49:16 +03:00
2020-01-12 12:44:21 +03:00
# Build end2end tests
RUN dotnet build K2Bridge.Tests.End2End
# Build image for executing End2End tests in Kubernetes
FROM mcr.microsoft.com/dotnet/core/sdk:$DOTNET_VERSION AS end2endtest
COPY --from= build /app/K2Bridge ./K2Bridge
COPY --from= build /app/K2Bridge.Tests.End2End ./K2Bridge.Tests.End2End
# Create a FIFO pipe allowing to fetch test outputs before container terminates
RUN mkfifo /test-result-pipe
# Run the created image to execute End2End tests
CMD [ "bash" , "-x" , "-c" , "dotnet test K2Bridge.Tests.End2End '--logger:trx;LogFileName=/app/TestResult.xml' ; cat /app/TestResult.xml > /test-result-pipe ; sleep 5" ]
2019-10-28 12:49:16 +03:00
# Build runtime image
2019-12-26 18:23:25 +03:00
FROM mcr.microsoft.com/dotnet/core/aspnet:$DOTNET_VERSION AS runtime
2019-10-28 12:49:16 +03:00
WORKDIR /app
2019-12-26 18:23:25 +03:00
COPY --from= build /app/out .
2019-10-28 12:49:16 +03:00
ENTRYPOINT [ "dotnet" , "K2Bridge.dll" ]