Inkycal/.devcontainer/devcontainer.json

25 lines
707 B
JSON
Raw Normal View History

2023-11-20 17:29:44 +01:00
// For format details, see https://aka.ms/devcontainer.json.
{
2023-11-20 17:29:44 +01:00
"name": "Inkycal-dev",
"build": {
"dockerfile": "Dockerfile",
"target": "development"
},
2023-11-20 17:29:44 +01:00
// This is the settings.json mount
"mounts": ["source=/c/temp/settings_test.json,target=/boot/settings.json,type=bind,consistency=cached"],
// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "dos2unix ./.devcontainer/postCreate.sh && chmod +x ./.devcontainer/postCreate.sh && ./.devcontainer/postCreate.sh",
2023-11-20 17:29:44 +01:00
"customizations": {
"vscode": {
"extensions": [
"ms-python.python",
"ms-python.black-formatter",
"ms-azuretools.vscode-docker"
2023-11-20 17:29:44 +01:00
]
}
}
}