4 lines
96 B
Docker
4 lines
96 B
Docker
FROM mcr.microsoft.com/dotnet/core/sdk:3.1
|
|
COPY app/ app/
|
|
ENTRYPOINT ["dotnet", "test", "app/"]
|