Add nugget packages into dockerfile

This commit is contained in:
albertvala 2025-11-03 11:40:50 +01:00
parent 45d78cb73f
commit a67e4a1f3a

View File

@ -6,6 +6,9 @@ COPY *.csproj ./
RUN dotnet restore
RUN dotnet add package System.Data.SQLite
RUN dotnet add package SQLitePCLRaw.lib.e_sqlite3
COPY . ./
RUN dotnet build --configuration Debug