From ade99441595988f349f93bc5aede6313ee142fe0 Mon Sep 17 00:00:00 2001 From: adamoutler Date: Sun, 5 Feb 2023 21:56:12 +0000 Subject: [PATCH] GAF to add python to the devcontainer --- .devcontainer/devcontainer.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index da9f50e..c4fa487 100755 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,11 +7,12 @@ "features": { "ghcr.io/devcontainers/features/python:1": {} }, - "onCreateCommand": "pip install openai; apt update; apt install git", + "onCreateCommand": "pip install openai", "customizations": { "vscode": { "extensions": [ - "pomdtr.secrets" + "pomdtr.secrets", + "ms-python.python" ] } }