# Multi-stage build of OtOpcUa.Host targeting linux-x64. Used by docker-dev/docker-compose.yml # to spin six host containers (central-1, central-2, site-a-1, site-a-2, site-b-1, site-b-2) from a single image — # Compose drives OTOPCUA_ROLES + Cluster:* env per container to differentiate them. FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build WORKDIR /src COPY . . RUN dotnet restore ZB.MOM.WW.OtOpcUa.slnx RUN dotnet publish src/Server/ZB.MOM.WW.OtOpcUa.Host/ZB.MOM.WW.OtOpcUa.Host.csproj \ -c Release -o /app --no-restore FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime WORKDIR /app COPY --from=build /app ./ EXPOSE 9000 EXPOSE 4053 EXPOSE 4840 ENTRYPOINT ["dotnet", "OtOpcUa.Host.dll"]