From 681eecebf71a1275a7549eb071af9c4d332c7cbe Mon Sep 17 00:00:00 2001 From: Lucas DELANIER Date: Sun, 5 Mar 2023 01:59:28 +0100 Subject: [PATCH] =?UTF-8?q?Mise=20=C3=A0=20jour=20de=20'Sources/MovieFinde?= =?UTF-8?q?r=5FAPI/Dockerfile'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/MovieFinder_API/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/MovieFinder_API/Dockerfile b/Sources/MovieFinder_API/Dockerfile index 0583f64..61ed039 100644 --- a/Sources/MovieFinder_API/Dockerfile +++ b/Sources/MovieFinder_API/Dockerfile @@ -10,7 +10,7 @@ WORKDIR /src COPY ["MovieFinder_API/MovieFinder_API.csproj", "MovieFinder_API/"] RUN dotnet restore "MovieFinder_API/MovieFinder_API.csproj" COPY . . -WORKDIR "/sources/MovieFinder_API" +WORKDIR "/Sources/MovieFinder_API" RUN dotnet build "MovieFinder_API.csproj" -c Release -o /app/build FROM build AS publish