changed Dockerfile and Program.cs
All checks were successful
Tests / Declarative: Post Actions No test results found
csharp-secdevops-pipeline-pod/pipeline/head This commit looks good

This commit is contained in:
2026-05-12 12:46:05 +02:00
parent da97867c33
commit 06caba6243
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ builder.Services.AddRazorComponents()
// Registrieren des Datenbankzugriffs (Sqlite)
builder.Services.AddDbContext<AppDbContext>(options =>
options.UseSqlite("Data Source=books.db"));
options.UseSqlite("Data Source=data/books.db"));
// Bauen des Webservers, der App
var app = builder.Build();