Remove Docker stuff

This commit is contained in:
Sven van Heugten 2026-02-27 17:24:30 +01:00
parent eedce14df4
commit 75fd103476
2 changed files with 0 additions and 44 deletions

View file

@ -1,13 +0,0 @@
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /app
COPY NightLight.sln ./
COPY NightLight.Core/NightLight.Core.fsproj NightLight.Core/
COPY NightLight/NightLight.fsproj NightLight/
RUN dotnet restore NightLight/NightLight.fsproj
COPY . ./
RUN dotnet publish NightLight/NightLight.fsproj --no-restore -c Release -o out
FROM mcr.microsoft.com/dotnet/runtime:10.0
WORKDIR /app
COPY --from=build /app/out .
ENTRYPOINT ["dotnet", "NightLight.dll"]