From aa57531ed7a73c342ad6090a7b8ff4cac346a596 Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Sun, 2 Jun 2019 17:37:44 +0900 Subject: [PATCH] fix test container --- BTCPayServer.Tests/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/BTCPayServer.Tests/Dockerfile b/BTCPayServer.Tests/Dockerfile index c473f5211..d57beb219 100644 --- a/BTCPayServer.Tests/Dockerfile +++ b/BTCPayServer.Tests/Dockerfile @@ -5,7 +5,10 @@ ENV LC_ALL en_US.UTF-8 ENV LANG en_US.UTF-8 WORKDIR /source +COPY Common.csproj Common.csproj COPY BTCPayServer/BTCPayServer.csproj BTCPayServer/BTCPayServer.csproj +COPY BTCPayServer.Common/BTCPayServer.Common.csproj BTCPayServer.Common/BTCPayServer.Common.csproj +COPY BTCPayServer.Rating/BTCPayServer.Rating.csproj BTCPayServer.Rating/BTCPayServer.Rating.csproj COPY BTCPayServer.Tests/BTCPayServer.Tests.csproj BTCPayServer.Tests/BTCPayServer.Tests.csproj RUN dotnet restore BTCPayServer.Tests/BTCPayServer.Tests.csproj