Simplify Dockerfile by adjusting project path and cleaning up redundant WORKDIR commands
This commit is contained in:
+4
-5
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user