We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c826b0 commit 65548e1Copy full SHA for 65548e1
1 file changed
.devcontainer/devcontainer.json
@@ -6,7 +6,7 @@
6
"image": "mcr.microsoft.com/devcontainers/ruby:3-4-trixie",
7
"features": {
8
"ghcr.io/devcontainers/features/rust:1": {}
9
- }
+ },
10
11
// Features to add to the dev container. More info: https://containers.dev/features.
12
// "features": {},
@@ -15,7 +15,9 @@
15
// "forwardPorts": [],
16
17
// Use 'postCreateCommand' to run commands after the container is created.
18
- // "postCreateCommand": "ruby --version",
+ // See: https://containers.dev/implementors/json_reference/#lifecycle-scripts
19
+ // See: https://oxidize-rb.org/docs/faq/#q-the-build-is-failing-with-a-libclang-not-found-error
20
+ "postCreateCommand": "apt update && apt install -y libclang-dev"
21
22
// Configure tool-specific properties.
23
// "customizations": {},
0 commit comments