From 8fcc10d980fea90d3ee48f98922f7695b4318381 Mon Sep 17 00:00:00 2001 From: "regicidal.plutophage" <36969337+regicidalplutophage@users.noreply.github.com> Date: Sun, 22 Oct 2023 00:59:42 +0300 Subject: [PATCH] Fix devcontainer.json A missing comma was causing container build to fail, it was falling back on recovery container. --- .devcontainer/devcontainer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 1b7463bb1..8975c70a1 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -6,7 +6,7 @@ "image": "mcr.microsoft.com/devcontainers/python:1-3.11-bullseye", "features": { "ghcr.io/devcontainers/features/python:1": {} - } + }, // Features to add to the dev container. More info: https://containers.dev/features. // "features": {},