14 lines
534 B
JSON
14 lines
534 B
JSON
{
|
|
"name": "Monochrome Dev Container",
|
|
"build": {
|
|
"context": "..",
|
|
"dockerfile": "./Dockerfile"
|
|
},
|
|
"postCreateCommand": "git config --local core.editor \"code --wait\" && git config --local commit.gpgsign false && bun install",
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode", "anthropic.claude-code"]
|
|
}
|
|
},
|
|
"mounts": ["source=${env:HOME}/.gitconfig,target=/home/vscode/.gitconfig,type=bind,consistency=cached"]
|
|
}
|