Skip to content

Commit 5200ce6

Browse files
authored
Fix up codespaces config file
1 parent 7e8c072 commit 5200ce6

1 file changed

Lines changed: 9 additions & 4 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
22
// README at: https://github.com/devcontainers/templates/tree/main/src/alpine
33
{
4-
"name": "Alpine",
4+
"name": "Debian (Bookworm) + Node 24",
55
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
66
"image": "mcr.microsoft.com/devcontainers/base:bookworm",
77

@@ -11,16 +11,21 @@
1111
"version": "24.7.0"
1212
},
1313
"ghcr.io/devcontainers/features/git-lfs:1": {}
14-
}
14+
},
1515

1616
// Use 'forwardPorts' to make a list of ports inside the container available locally.
1717
// "forwardPorts": [],
1818

1919
// Use 'postCreateCommand' to run commands after the container is created.
20-
// "postCreateCommand": "uname -a",
20+
"postCreateCommand": "pnpm i && pnpm run build",
2121

2222
// Configure tool-specific properties.
23-
// "customizations": {},
23+
"customizations": {
24+
"vscode": {
25+
"extensions": [
26+
]
27+
}
28+
}
2429

2530
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
2631
// "remoteUser": "root"

0 commit comments

Comments
 (0)