From 89dcbbaac60a37c928d20dd505338691778d29f6 Mon Sep 17 00:00:00 2001 From: Matej Hires Date: Mon, 4 Dec 2023 19:49:48 +0100 Subject: [PATCH] Edit path --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1a3dbe5..a4a627f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,9 +11,9 @@ COPY . . WORKDIR "/src/AutomatedTestingApp" FROM build AS publish -RUN dotnet publish "AutomatedTestingApp.csproj" -c Release -o /app/publish /p:UseAppHost=false +RUN dotnet publish "AutomatedTestingApp.csproj" -c Release -o ./app /p:UseAppHost=false FROM base AS final WORKDIR /app -COPY --from=publish /app/publish . +COPY --from=publish ./app . ENTRYPOINT ["dotnet", "AutomatedTestingApp.dll"]