Merge pull request #4 from svenvanheugten/fix-docker-build

Fix Docker build
This commit is contained in:
Sven van Heugten 2026-01-04 20:24:19 +01:00 committed by GitHub
commit 8cc59c4738
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,7 +3,7 @@ WORKDIR /app
COPY NightLight.sln ./ COPY NightLight.sln ./
COPY NightLight.Core/NightLight.Core.fsproj NightLight.Core/ COPY NightLight.Core/NightLight.Core.fsproj NightLight.Core/
COPY NightLight/NightLight.fsproj NightLight/ COPY NightLight/NightLight.fsproj NightLight/
RUN dotnet restore RUN dotnet restore NightLight/NightLight.fsproj
COPY . ./ COPY . ./
RUN dotnet publish NightLight/NightLight.fsproj --no-restore -c Release -o out RUN dotnet publish NightLight/NightLight.fsproj --no-restore -c Release -o out