btcpayserver/BTCPayServer.Tests/Dockerfile

13 lines
412 B
Docker
Raw Normal View History

2018-04-06 19:23:12 +02:00
FROM microsoft/dotnet:2.0.6-sdk-2.1.101-stretch
WORKDIR /app
# caches restore result by copying csproj file separately
COPY BTCPayServer.Tests/BTCPayServer.Tests.csproj BTCPayServer.Tests/BTCPayServer.Tests.csproj
COPY BTCPayServer/BTCPayServer.csproj BTCPayServer/BTCPayServer.csproj
WORKDIR /app/BTCPayServer.Tests
RUN dotnet restore
# copies the rest of your code
COPY . ../.
2018-04-06 19:23:12 +02:00
ENTRYPOINT ["dotnet", "test"]