fix(cicd)

This commit is contained in:
Mikhail Kuznetsov
2025-05-27 12:18:45 +10:00
parent 1e1a97198a
commit 5aff27cb7a

View File

@@ -31,4 +31,8 @@ RUN dotnet publish "./PARR.AIHITRelationshipsSyncerWorker.csproj" -c $BUILD_CONF
FROM base AS final
WORKDIR /app
COPY --from=publish /app/publish .
# Fixes an old version TLS (AIH IT GVC)
RUN sed -i 's/DEFAULT@SECLEVEL=2/DEFAULT@SECLEVEL=1/g' /etc/ssl/openssl.cnf
ENTRYPOINT ["dotnet", "PARR.AIHITRelationshipsSyncerWorker.dll"]