diff --git a/Dockerfile b/Dockerfile index 3f1dadf..06a325b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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