Simplified docker files

This commit is contained in:
Khwezi Mngoma
2026-06-06 00:23:28 +02:00
parent 8a5d55fc2a
commit 22cc955a41
3 changed files with 21 additions and 51 deletions
+9 -17
View File
@@ -1,28 +1,20 @@
FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS base
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:9.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
ARG TARGETARCH
WORKDIR /src
WORKDIR /app_source
# 1. Copy the master solution file and the entire project directory structures
# but ONLY copy the .csproj files. This keeps the Docker layer cache completely optimization-friendly.
COPY LiteCharmsSecurity.sln ./
COPY src/*/*.csproj ./
COPY src/ ./src/
# Clean up duplicate files dropped into the root context by the wildcard copy
RUN rm -f *.csproj
# 2. Restore the entire solution cleanly using the global workspace cache
RUN dotnet restore "LiteCharmsSecurity.sln"
# 3. Bring in the rest of your implementation code files now that the packages are fully cached
# Copy everything from repository root into /app_source
COPY . .
# 4. Target your specific project execution path for Compilation & Publishing
WORKDIR "/src/src/LiteCharmsSecurity.STS.Identity"
# Restore the solution from the root context
RUN dotnet restore "LiteCharmsSecurity.sln"
# Paths match your repository exactly now: src/ is just under the root
WORKDIR "/app_source/src/LiteCharmsSecurity.STS.Identity"
RUN dotnet build "LiteCharmsSecurity.STS.Identity.csproj" -c Release -o /app/build
FROM build AS publish