From 333750c87826a7a2d5593492fe0968148fe6da19 Mon Sep 17 00:00:00 2001 From: hvanranden Date: Thu, 22 Jan 2026 19:10:52 +0100 Subject: [PATCH] Simplify Dockerfile by adjusting project path and cleaning up redundant WORKDIR commands --- Intentor/Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Intentor/Dockerfile b/Intentor/Dockerfile index 25ccf3f..e9e5a87 100644 --- a/Intentor/Dockerfile +++ b/Intentor/Dockerfile @@ -7,15 +7,14 @@ EXPOSE 8081 FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src -COPY ["Intentor/Intentor.csproj", "Intentor/"] -RUN dotnet restore "Intentor/Intentor.csproj" +COPY ["Intentor.csproj", "./"] +RUN dotnet restore "Intentor.csproj" COPY . . -WORKDIR "/src/Intentor" -RUN dotnet build "./Intentor.csproj" -c $BUILD_CONFIGURATION -o /app/build +RUN dotnet build "Intentor.csproj" -c $BUILD_CONFIGURATION -o /app/build FROM build AS publish ARG BUILD_CONFIGURATION=Release -RUN dotnet publish "./Intentor.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false +RUN dotnet publish "Intentor.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost=false FROM base AS final WORKDIR /app