2025-05-27 11:32:05 +10:00
# See https://aka.ms/customizecontainer to learn how to customize your debug container and how Visual Studio uses this Dockerfile to build your images for faster debugging.
# This stage is used when running from VS in fast mode (Default for Debug configuration)
2026-05-19 11:43:05 +10:00
FROM 10.99.253.167:8090/dotnet/runtime:9.0 AS base
2025-05-27 11:32:05 +10:00
WORKDIR /app
# This stage is used to build the service project
2026-05-19 11:43:05 +10:00
FROM 10.99.253.167:8090/dotnet/sdk:9.0 AS build
2025-05-27 11:32:05 +10:00
ARG BUILD_CONFIGURATION = Release
2026-05-19 13:51:25 +10:00
USER root
2025-05-27 11:32:05 +10:00
WORKDIR /src
COPY [ "NuGet.config" , "." ]
COPY [ "PARR.AIHITRelationshipsSyncerWorker/PARR.AIHITRelationshipsSyncerWorker.csproj" , "PARR.AIHITRelationshipsSyncerWorker/" ]
COPY [ "PARR.AIHITRelationshipsSyncer/PARR.AIHITRelationshipsSyncer.csproj" , "PARR.AIHITRelationshipsSyncer/" ]
2026-04-14 16:27:27 +10:00
COPY [ "PARR.Core/PARR.Core.csproj" , "PARR.Core/" ]
2026-04-14 12:23:44 +10:00
COPY [ "PARR.Domain/PARR.Domain.csproj" , "PARR.Domain/" ]
2025-05-27 11:32:05 +10:00
COPY [ "PARR.DAL/PARR.DAL.csproj" , "PARR.DAL/" ]
2026-04-14 16:27:27 +10:00
COPY [ "PARR.Infrastructure/PARR.Infrastructure.csproj" , "PARR.Infrastructure/" ]
2025-05-27 11:32:05 +10:00
RUN dotnet restore "./PARR.AIHITRelationshipsSyncerWorker/PARR.AIHITRelationshipsSyncerWorker.csproj"
COPY . .
WORKDIR "/src/PARR.AIHITRelationshipsSyncerWorker"
RUN dotnet build "./PARR.AIHITRelationshipsSyncerWorker.csproj" -c $BUILD_CONFIGURATION -o /app/build
# This stage is used to publish the service project to be copied to the final stage
FROM build AS publish
ARG BUILD_CONFIGURATION = Release
ARG app_version = 0 .0.0-default
RUN dotnet publish "./PARR.AIHITRelationshipsSyncerWorker.csproj" -c $BUILD_CONFIGURATION -o /app/publish /p:UseAppHost= false /p:Version= $app_version
# This stage is used in production or when running from VS in regular mode (Default when not using the Debug configuration)
FROM base AS final
WORKDIR /app
COPY --from= publish /app/publish .
2026-06-26 09:25:16 +10:00
# 1. <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> OpenSSL 3 <20> <> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> EOF (UnsafeLegacyRenegotiation <20> IgnoreUnexpectedEOF)
RUN sed -i 's/providers = provider_sect/providers = provider_sect\nssl_conf = ssl_sect/' /etc/ssl/openssl.cnf \
&& printf "\n[ssl_sect]\nsystem_default = system_default_sect\n" >> /etc/ssl/openssl.cnf \
&& printf "\n[system_default_sect]\nOptions = UnsafeLegacyRenegotiation,IgnoreUnexpectedEOF\nMinProtocol = TLSv1\nCipherString = DEFAULT@SECLEVEL=0\n" >> /etc/ssl/openssl.cnf
2026-06-25 14:51:42 +10:00
2026-06-26 09:25:16 +10:00
# 2. <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <20> <> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> .NET 9
2026-06-25 17:27:14 +10:00
ENV DOTNET_AppContext_Switch_System_Net_Security_UseUnsafeOldTlsRuntimeBehavior = true
2026-06-26 08:39:38 +10:00
ENV DOTNET_AppContext_Switch_Microsoft_Data_SqlClient_UseOldTlsValue = true
2026-06-26 09:25:16 +10:00
ENV DOTNET_SYSTEM_NET_SECURITY_ALLOWUNSECUREDEFAULTS = true
2025-05-27 12:18:45 +10:00
2025-05-27 11:32:05 +10:00
ENTRYPOINT [ "dotnet" , "PARR.AIHITRelationshipsSyncerWorker.dll" ]