From dea59357c39ea7cfb584878b2858a36d02c88142 Mon Sep 17 00:00:00 2001 From: Marek Lesko Date: Sun, 19 Oct 2025 17:00:33 +0000 Subject: [PATCH] fix: specify project file in dotnet restore command for clarity --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f99ad66..cdba0cf 100755 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN npm run build -- --output-path=dist/Web/browser FROM mcr.microsoft.com/dotnet/sdk:8.0 AS api-build WORKDIR /app/api COPY Api/ ./ -RUN dotnet restore +RUN dotnet restore Api.csproj RUN dotnet publish Api.csproj -c Release -o /app/api/build # Final runtime image