From 4ea9b98fd7e9a2e1e137d477d5bc668ae7041c16 Mon Sep 17 00:00:00 2001 From: khwezi Date: Tue, 3 Mar 2026 14:55:47 +0200 Subject: [PATCH] Refactored paths --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index ebaa77a..409f19a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,7 @@ FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build -WORKDIR /src +WORKDIR . COPY . . RUN dotnet publish "SampleApi/SampleApi.csproj" -c Release -o /app/publish -COPY /app/publish /app # Stage 2: Run the app using the Runtime FROM ://mcr.microsoft.com -- 2.47.3