From 52ec6dc025e5150cd28d2852d6cf4ed3e1c46bac Mon Sep 17 00:00:00 2001 From: Sven van Heugten Date: Sun, 4 Jan 2026 20:23:16 +0100 Subject: [PATCH] Fix Docker build The solution file includes the test project, but the test project isn't copied into the first stage of the Dockerfile. --- NightLight/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NightLight/Dockerfile b/NightLight/Dockerfile index dfad5c3..64c6696 100644 --- a/NightLight/Dockerfile +++ b/NightLight/Dockerfile @@ -3,7 +3,7 @@ WORKDIR /app COPY NightLight.sln ./ COPY NightLight.Core/NightLight.Core.fsproj NightLight.Core/ COPY NightLight/NightLight.fsproj NightLight/ -RUN dotnet restore +RUN dotnet restore NightLight/NightLight.fsproj COPY . ./ RUN dotnet publish NightLight/NightLight.fsproj --no-restore -c Release -o out