Added a docker image and compose file for the application

This commit is contained in:
Vincent Allen
2025-09-03 13:28:56 -04:00
parent e136fa8b3d
commit 77318e87d1
192 changed files with 5369 additions and 96 deletions

View File

@@ -36,11 +36,15 @@ public class ArtifactGroupingProvider : IArtifactGroupingProvider
{
await using var context = await _context.CreateDbContextAsync();
return await context.ArtifactGroupings
.Where(g => g.ArtifactGroupingIdentifier == artifactGroupingIdentifier)
.Include(g => g.Category)
.Include(g => g.IdentifierFields)
.Include(g => g.ChildArtifactEntries)
.ThenInclude(g => g.StorageLocation)
.ThenInclude(g => g.Location)
.ThenInclude(e => e.StorageLocation)
.Include(g => g.ChildArtifactEntries)
.ThenInclude(e => e.Type)
.Include(g => g.ChildArtifactEntries)
.ThenInclude(e => e.Files)
.Where(g => g.ArtifactGroupingIdentifier == artifactGroupingIdentifier)
.FirstOrDefaultAsync();
}