From 75c2e530e0a22bd4b0f862424b6ce5aebfd16ee3 Mon Sep 17 00:00:00 2001 From: dan Date: Fri, 30 Oct 2020 19:20:33 -0600 Subject: [PATCH] csproj test --- dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index eacaea1..2470399 100644 --- a/dockerfile +++ b/dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/core/sdk:2.2 AS build-env WORKDIR /app # Copy csproj and restore as distinct layers -COPY *.csproj ./ +COPY **/*.csproj ./ RUN dotnet restore # Copy everything else and build