From 25127f92a35d970c70301b9a4154cbc7b9589886 Mon Sep 17 00:00:00 2001 From: Gelu Mihes Date: Fri, 8 May 2026 15:15:45 +0300 Subject: [PATCH] Changes --- docker-compose/docker-compose.yml | 2 +- web/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose/docker-compose.yml b/docker-compose/docker-compose.yml index 6f85c52..27ff18c 100644 --- a/docker-compose/docker-compose.yml +++ b/docker-compose/docker-compose.yml @@ -29,7 +29,7 @@ services: - InternalApi__ApiKey=${InternalApi__ApiKey:-change-this-internal-key} - InternalApi__RequireApiKey=${InternalApi__RequireApiKey:-false} - # Rag: matches rag-api appsettings Rag section 1 + # Rag: matches rag-api appsettings Rag section - Rag__MaxFileSizeMb=${Rag__MaxFileSizeMb:-8} - Rag__ChunkSize=${Rag__ChunkSize:-900} - Rag__ChunkOverlap=${Rag__ChunkOverlap:-150} diff --git a/web/Dockerfile b/web/Dockerfile index c205e7a..2b697f2 100644 --- a/web/Dockerfile +++ b/web/Dockerfile @@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build ARG BUILD_CONFIGURATION=Release WORKDIR /src/web -COPY web.csproj ./ +COPY web/web.csproj ./ RUN dotnet restore web.csproj # Copy only the web project files to avoid bringing other projects into the build context