From 78bb5c4ff606434958b5df626c5260ead24d69e0 Mon Sep 17 00:00:00 2001 From: Alexandre GLENAT Date: Thu, 23 Mar 2023 00:11:01 +0100 Subject: [PATCH] tyest --- Sources/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Dockerfile b/Sources/Dockerfile index 31e16dd..9e22eb3 100644 --- a/Sources/Dockerfile +++ b/Sources/Dockerfile @@ -21,7 +21,7 @@ RUN dotnet restore "Api/Api.csproj" COPY . . WORKDIR "/src/Api" RUN dotnet build "Api.csproj" -c Release -o /app/build -RUN chmod -R 755 ../src/Api +RUN chmod -R 755 ../Api FROM build AS publish RUN dotnet publish "Api.csproj" -c Release -o /app/publish /p:UseAppHost=false