Context
I'm trying to create a selenium-standalone windows container so we can run e2e-tests on Microsoft Edge. To do this I need to install Microsoft Edge in the container. Afaik, Microsoft does not publish Edge in any form. They only pre-package Edge with Windows.
Unfortunately Edge isn't pre-packaged in any Windows Container. I verified this by adding: RUN powershell (Get-AppxPackage Microsoft.MicrosoftEdge).Version
to my .Dockerfile
which always came up empty regardless of the tag and image.
Specific question
What I would like to know is whether someone knows where I can find an installer for Edge that's atleast semi-official. I had no luck finding one so far neither online nor in any package-manager.
General question
If you can't answer the question above but do know a different method of installing Microsoft Edge in a Windows Container, please share.