Simplify Dockerfile by adjusting project path and cleaning up redundant WORKDIR commands

This commit is contained in:
hvanranden
2026-01-22 19:10:52 +01:00
parent 00074d086d
commit 333750c878
+4 -5
View File
@@ -7,15 +7,14 @@ EXPOSE 8081
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
ARG BUILD_CONFIGURATION=Release ARG BUILD_CONFIGURATION=Release
WORKDIR /src WORKDIR /src
COPY ["Intentor/Intentor.csproj", "Intentor/"] COPY ["Intentor.csproj", "./"]
RUN dotnet restore "Intentor/Intentor.csproj" RUN dotnet restore "Intentor.csproj"
COPY . . 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 FROM build AS publish
ARG BUILD_CONFIGURATION=Release 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 FROM base AS final
WORKDIR /app WORKDIR /app