From 7271753d80e9aed94c4e4e49415e1579e76457ed Mon Sep 17 00:00:00 2001 From: Max Grundnig Date: Mon, 9 Dec 2024 00:48:14 +0100 Subject: [PATCH] Remove importmap:install command from devcontainer.json If it is executed as part of the updateContentCommand step, the container creation fails. importmap:install is executed by composer install though (part of the auto-scripts), which executes just fine in Codespaces. Fixes #1542 Co-authored-by: Wolfgang Weintritt --- .devcontainer/devcontainer.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 49b66d14c..c2b114871 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -4,11 +4,10 @@ "ghcr.io/shyim/devcontainers-features/symfony-cli:0": {}, "ghcr.io/shyim/devcontainers-features/php:0": { "version": "8.2" - }, + } }, "updateContentCommand": { - "composer install": ["composer", "install"], - "importmap:install": ["symfony", "console", "importmap:install"] + "composer install": ["composer", "install"] }, "postAttachCommand": { "server": "symfony server:start",