WIP: build production images
Some checks failed
Build Docker Images / build-and-push (push) Failing after 1m30s

This commit is contained in:
Michał Zieliński
2025-10-12 20:17:33 +02:00
parent b24aaab679
commit 140ece8080
12 changed files with 275 additions and 72 deletions

45
BimAI.UI.Web/Dockerfile Normal file
View File

@@ -0,0 +1,45 @@
# Stage 1: Build
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
WORKDIR /src
# Copy solution and all project files for restore
COPY BimAI.sln ./
COPY BimAI.UI.Web/BimAI.UI.Web.csproj BimAI.UI.Web/
COPY BimAI.UI.Shared/BimAI.UI.Shared.csproj BimAI.UI.Shared/
COPY BimAI.Domain/BimAI.Domain.csproj BimAI.Domain/
COPY BimAI.Application/BimAI.Application.csproj BimAI.Application/
# Restore dependencies
RUN dotnet restore BimAI.UI.Web/BimAI.UI.Web.csproj
# Copy all source code
COPY . .
# Build and publish
WORKDIR /src/BimAI.UI.Web
RUN dotnet publish -c Release -o /app/publish --no-restore
# Stage 2: Runtime
FROM mcr.microsoft.com/dotnet/aspnet:8.0 AS runtime
WORKDIR /app
# Set timezone
ENV TZ=Europe/Warsaw
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Copy published files
COPY --from=build /app/publish .
# Set environment variables
ENV ASPNETCORE_ENVIRONMENT=Production
ENV ASPNETCORE_URLS=http://0.0.0.0:7143
# Expose port
EXPOSE 7143
# Health check
HEALTHCHECK --interval=30s --timeout=3s --start-period=10s --retries=3 \
CMD wget --no-verbose --tries=1 --spider http://localhost:7143/health || exit 1
# Run the application
ENTRYPOINT ["dotnet", "BimAI.UI.Web.dll"]

View File

@@ -30,6 +30,8 @@ app.UseHttpsRedirection();
app.UseStaticFiles();
app.UseAntiforgery();
app.MapGet("/health", () => Results.Ok(new { status = "OK", timestamp = DateTime.UtcNow }));
app.MapRazorComponents<App>()
.AddInteractiveServerRenderMode()
.AddAdditionalAssemblies(typeof(MainLayout).Assembly);

View File

@@ -0,0 +1,22 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"ApiSettings": {
"BaseUrl": "#{api-base-url}#"
},
"GoogleAuth": {
"ClientId": "#{google-auth-client-id}#"
},
"Kestrel": {
"Endpoints": {
"Http": {
"Url": "http://0.0.0.0:7143"
}
}
}
}

View File

@@ -1,9 +0,0 @@
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*"
}