From dce7d39ca4350b14d38109e5836267121a427227 Mon Sep 17 00:00:00 2001 From: clchieu Date: Wed, 27 Mar 2024 18:51:36 +0100 Subject: [PATCH] Debug du chemin de copie --- docker/Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 65e0920..bcd56bc 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,13 +1,10 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build WORKDIR /src -COPY API_SQLuedo/**/*.csproj . +COPY API_SQLuedo/**/*.csproj ./ # Restore dependencies RUN dotnet restore API.csproj -# Copy the rest of the files -COPY API_SQLuedo/API/ . - # Build the application RUN dotnet build API.csproj -c Release -o /app/build