I have an App
which I am developing, it uses an external SDK
that has a number of DLLs
which need to be referred from my application code. Because of this reason, I have to explore ways to deploy this app on a windows
container in EKS
, but I would like to have a better way to refer to these DLL
s in some externalized way or decoupled from my linux
container only, so that I do not need to create a windows container only for that purpose. I tried to go through some links as well as below to figure that out, but couldn't get a clear picture.
Docker Windows container running DLL's
Using Precompiled .NET Assembly DLL in Mono?
Is that possible in any manner or will I have to use a windows container only just because my code refers to some DLL
s while performing backend operations?