From 0e7ad05e67b573f9f5156eeb4285ed09162bf4de Mon Sep 17 00:00:00 2001 From: Moonbase Date: Thu, 3 Sep 2026 11:06:03 -0700 Subject: [PATCH] Specify Project In Dockerfile --- src/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Dockerfile b/src/Dockerfile index 99edc06..57d57a5 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /src COPY . . # Restore dependencies and build the application -RUN dotnet build -c Release -o /app +RUN dotnet build src/sodoffmmo.csproj -c Release -o /app # Create clean run environment (without source and sdk) # FROM mcr.microsoft.com/dotnet/runtime:9.0 AS base