From 72042b315f249d278e2e914a7d600c6b65407929 Mon Sep 17 00:00:00 2001 From: hsm207 Date: Thu, 17 Aug 2023 11:02:42 +0000 Subject: [PATCH] add poetry to devcontainer --- .devcontainer/devcontainer.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 282ff4ad3..edd9b2b89 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,7 +6,8 @@ "image": "mcr.microsoft.com/devcontainers/universal:2-linux", "features": { "ghcr.io/devcontainers/features/aws-cli:1": {}, - "ghcr.io/devcontainers/features/docker-in-docker": {} + "ghcr.io/devcontainers/features/docker-in-docker": {}, + "ghcr.io/devcontainers-contrib/features/poetry": {} }, "customizations": { "vscode": {"extensions": [ @@ -18,6 +19,10 @@ ]} }, + "containerEnv": { + "POETRY_VIRTUALENVS_IN_PROJECT": "true" + }, + // Features to add to the dev container. More info: https://containers.dev/features. // "features": {},