diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 000000000..39e698a67 --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,15 @@ +{ + "name": "Ubuntu Devcontainer", + "image": "mcr.microsoft.com/devcontainers/base:ubuntu", + "settings": { + "terminal.integrated.shell.linux": "/bin/bash" + }, + "postCreateCommand": "sudo apt update && sudo apt upgrade -y", + "features": { + "docker-in-docker": "latest" + }, + "extensions": [ + "ms-python.python", + "dbaeumer.vscode-eslint" + ] +}