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