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