Changes
Build and Push Docker Images / build (push) Failing after 16s

This commit is contained in:
2026-05-08 15:15:45 +03:00
parent 95e5d27140
commit 25127f92a3
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ services:
- InternalApi__ApiKey=${InternalApi__ApiKey:-change-this-internal-key} - InternalApi__ApiKey=${InternalApi__ApiKey:-change-this-internal-key}
- InternalApi__RequireApiKey=${InternalApi__RequireApiKey:-false} - 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__MaxFileSizeMb=${Rag__MaxFileSizeMb:-8}
- Rag__ChunkSize=${Rag__ChunkSize:-900} - Rag__ChunkSize=${Rag__ChunkSize:-900}
- Rag__ChunkOverlap=${Rag__ChunkOverlap:-150} - Rag__ChunkOverlap=${Rag__ChunkOverlap:-150}
+1 -1
View File
@@ -2,7 +2,7 @@ FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
ARG BUILD_CONFIGURATION=Release ARG BUILD_CONFIGURATION=Release
WORKDIR /src/web WORKDIR /src/web
COPY web.csproj ./ COPY web/web.csproj ./
RUN dotnet restore web.csproj RUN dotnet restore web.csproj
# Copy only the web project files to avoid bringing other projects into the build context # Copy only the web project files to avoid bringing other projects into the build context