# Multi-stage build for the ACL service (.NET 10). # Build context is services/acl (see infra/docker-compose.yml). FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build WORKDIR /src # Restore first (cached unless .csproj files change). COPY Acl.Api/Acl.Api.csproj Acl.Api/ COPY Acl.Application/Acl.Application.csproj Acl.Application/ COPY Acl.Infrastructure/Acl.Infrastructure.csproj Acl.Infrastructure/ RUN dotnet restore Acl.Api/Acl.Api.csproj COPY Acl.Api/ Acl.Api/ COPY Acl.Application/ Acl.Application/ COPY Acl.Infrastructure/ Acl.Infrastructure/ RUN dotnet publish Acl.Api/Acl.Api.csproj -c Release -o /app/publish /p:UseAppHost=false FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime WORKDIR /app RUN apt-get update \ && apt-get install -y --no-install-recommends curl \ && rm -rf /var/lib/apt/lists/* COPY --from=build /app/publish . ENV ASPNETCORE_URLS=http://+:8080 EXPOSE 8080 HEALTHCHECK --interval=5s --timeout=3s --start-period=10s --retries=5 \ CMD curl -fsS http://localhost:8080/health || exit 1 ENTRYPOINT ["dotnet", "Acl.Api.dll"]