Added LMStudio client, upgraded to .net 9.0

This commit is contained in:
Samuele Lorefice
2024-12-25 19:37:14 +01:00
parent 0ba298b955
commit 4b308b762a
7 changed files with 51 additions and 45 deletions

View File

@@ -1,8 +1,8 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS base
FROM mcr.microsoft.com/dotnet/dotnet:9.0 AS base
USER $APP_UID
WORKDIR /app
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
ARG BUILD_CONFIGURATION=Release
WORKDIR /src
COPY ["TelegramBot/TelegramBot.csproj", "TelegramBot/"]