ServicedComponent (COM+ Assembly) error

Hi, I am using windowsservercore docker container for my ASP.NET webforms application.
In the dockerfile, I register my COM+ Assembly using RegSvcs.exe.
But while running the application prompting with below error.

Exception Details: System.Runtime.InteropServices.COMException: An attempt was made to reference a token that does not exist. (Exception from HRESULT: 0x800703F0)

Source Error:

An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

`[COMException (0x800703f0): An attempt was made to reference a token that does not exist. (Exception from HRESULT: 0x800703F0)]
System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) +0
System.EnterpriseServices.Thunk.Proxy.CoCreateObject(Type serverType, Boolean bQuerySCInfo, Boolean& bIsAnotherProcess, String& uri) +352
System.EnterpriseServices.ServicedComponentProxyAttribute.CreateInstance(Type serverType) +197
System.Runtime.Remoting.Activation.ActivationServices.IsCurrentContextOK(RuntimeType serverType, Object props, Boolean bNewObj) +14683760

Is there any resolution for the issue in windows container?