From d874cf4c99c47cb4e0424bd59bca064d638b4232 Mon Sep 17 00:00:00 2001 From: Yuming Zhu Date: Oct 23 2024 08:40:38 +0000 Subject: add bash-completion and docker vscode plugin --- diff --git a/.devcontainer/python2/devcontainer.json b/.devcontainer/python2/devcontainer.json index 82c670d..d597b9d 100644 --- a/.devcontainer/python2/devcontainer.json +++ b/.devcontainer/python2/devcontainer.json @@ -7,7 +7,7 @@ "build": { "dockerfile": "../../devtools/containers/Dockerfile.centos7", "args": { - "EXTRA_PKGS": "git vim make" + "EXTRA_PKGS": "git vim make bash-completion" } }, @@ -22,7 +22,8 @@ "extensions": [ "ms-python.python", "ms-python.vscode-pylance", - "ms-python.isort" + "ms-python.isort", + "ms-azuretools.vscode-docker" ] } } diff --git a/.devcontainer/python3/devcontainer.json b/.devcontainer/python3/devcontainer.json index 81a8b08..b8bd14c 100644 --- a/.devcontainer/python3/devcontainer.json +++ b/.devcontainer/python3/devcontainer.json @@ -6,7 +6,7 @@ "build": { "dockerfile": "../../devtools/containers/Dockerfile.f39", "args": { - "EXTRA_PKGS": "git vim make python3-pip" + "EXTRA_PKGS": "git vim make bash-completion python3-pip" } }, @@ -21,7 +21,8 @@ "extensions": [ "ms-python.python", "ms-python.vscode-pylance", - "ms-python.isort" + "ms-python.isort", + "ms-azuretools.vscode-docker" ] } }