mirror of
https://github.com/ysoftdevs/Theatrical-Players-Refactoring-Kata.git
synced 2026-01-14 15:43:27 +01:00
13 lines
379 B
Docker
13 lines
379 B
Docker
FROM mcr.microsoft.com/dotnet/sdk:5.0-alpine as build
|
|
WORKDIR /app
|
|
|
|
COPY *.sln .
|
|
COPY TheatricalPlayersRefactoringKata/*.csproj ./TheatricalPlayersRefactoringKata/
|
|
COPY TheatricalPlayersRefactoringKata.Tests/*.csproj ./TheatricalPlayersRefactoringKata.Tests/
|
|
RUN dotnet restore
|
|
|
|
COPY . .
|
|
RUN dotnet build
|
|
|
|
FROM build AS test
|
|
RUN dotnet test --logger:console;verbosity=detailed |