Need help setting up Swift for development on VSCode in a docker container

I created a dev container in VSCode to be used with Swift. I am having all kinds of problems. It seems that the CodeLLDB plugin is not working properly. I keep getting the following message:

Error: ""libpython3.10.so.1.0: cannot open shared object file: No such file or directory""

Debug adapter exit code=1 (0x1), signal=null.

Here is the default devcontainer.json file:


{
	"name": "Swift",
    "image": "swift:5.7",
    "features": {
        "ghcr.io/devcontainers/features/common-utils:2": {
            "installZsh": "false",
            "username": "vscode",
            "userUid": "1000",
            "userGid": "1000",
            "upgradePackages": "false"
        },
        "ghcr.io/devcontainers/features/git:1": {
            "version": "os-provided",
            "ppa": "false"
        }
    },
    "runArgs": [
        "--cap-add=SYS_PTRACE",
        "--security-opt",
        "seccomp=unconfined"
    ],
    // Configure tool-specific properties.
    "customizations": {
        // Configure properties specific to VS Code.
        "vscode": {
            // Set *default* container specific settings.json values on container create.
            "settings": {
                "lldb.library": "/usr/lib/liblldb.so"
            },
            // Add the IDs of extensions you want installed when the container is created.
            "extensions": [
                "sswg.swift-lang"
            ]
        }
    },
    // Use 'forwardPorts' to make a list of ports inside the container available locally.
    // "forwardPorts": [],

    // Use 'postCreateCommand' to run commands after the container is created.
    "postCreateCommand": "swift --version",

    // Set `remoteUser` to `root` to connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root.
    "remoteUser": "vscode"
}

I really would like to do my development in a Linux docker container but so far I have not been able to run the debug command in VSCode.

Thanks