.Net Core Clr Debugger VSDBG Halts App When Attaching to Remote Process in Windows Docker Container

I have a .net core app running in a windows docker container that I want to attach VS Code to. When I do attach to the remote process, it seem the process freezes and if I disconnect the debugger, the container shuts down without any errors.

launch.json

    {
        "name": ".NET Core Remote Attach",
        "type": "coreclr",
        "request": "attach",
        "pipeTransport": {
            "pipeProgram": "powershell",
            "pipeArgs": ["docker exec -i --privileged amazing_johnson" ],
            "pipeCwd": "${workspaceRoot}",
            "debuggerPath": "c:\\coreclr-debug\\vsdbg.exe"
        },
        "processId": "1736"
    },

Results in the Debug Output Console:

Starting: "powershell" "docker exec -i --privileged amazing_johnson" "c:\coreclr-debug\vsdbg.exe --interpreter=vscode"

After attaching the debugger to the remote process, when I try to visit the site, it just hangs, VSCode lists the threads and displays some JSON in the terminal but nothing happens. Disconnecting from it shuts down the container. Why is this happening?