Skip to content

Commit 7271753

Browse files
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 <[email protected]>
1 parent 7169fb5 commit 7271753

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.devcontainer/devcontainer.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@
44
"ghcr.io/shyim/devcontainers-features/symfony-cli:0": {},
55
"ghcr.io/shyim/devcontainers-features/php:0": {
66
"version": "8.2"
7-
},
7+
}
88
},
99
"updateContentCommand": {
10-
"composer install": ["composer", "install"],
11-
"importmap:install": ["symfony", "console", "importmap:install"]
10+
"composer install": ["composer", "install"]
1211
},
1312
"postAttachCommand": {
1413
"server": "symfony server:start",

0 commit comments

Comments
 (0)