Implemented new storage system, path builder, default resources, fixed lang stuff

This commit is contained in:
Marcel Baumgartner
2023-04-13 16:29:40 +02:00
parent 4c9e3fa5a9
commit 601ba7d372
28 changed files with 1096 additions and 18 deletions

View File

@@ -19,4 +19,6 @@ RUN dotnet publish "Moonlight.csproj" -c Release -o /app/publish
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
RUN mkdir /app/storage
RUN rm -r /app/storage/*
ENTRYPOINT ["dotnet", "Moonlight.dll"]