Bu9ild path fixes
All checks were successful
Build Docker Images / test (push) Successful in 1m31s
Build Docker Images / build-and-push (push) Successful in 1m37s

This commit is contained in:
2025-11-28 11:29:38 +01:00
parent b0e77ec835
commit 57f1359c96
3 changed files with 13 additions and 13 deletions

View File

@@ -1,6 +1,6 @@
# Stage 1: Build
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /src/Backend
WORKDIR /
# Copy solution and all project files for restore
COPY DiunaBI.sln ./
@@ -16,7 +16,7 @@ RUN dotnet restore DiunaBI.UI.Web/DiunaBI.UI.Web.csproj
COPY . .
# Build and publish
WORKDIR /src/Backend/DiunaBI.UI.Web
WORKDIR /DiunaBI.UI.Web
RUN dotnet publish -c Release -o /app/publish --no-restore
# Stage 2: Runtime