debian-koji-osbuild/.devcontainer/devcontainer.json
Christian Kellner a841845688 devcontainer: initial import
Add support for Visual Studio Code Dev Containers.
2022-01-19 20:45:23 +01:00

32 lines
790 B
JSON

{
"name": "koji-osbuild",
"build": {
"dockerfile": "Dockerfile",
"context": "..",
},
"mounts": [
"source=osbuild-share,target=/root/.local/share,type=volume"
],
"runArgs": [
"--privileged"
],
"settings": {
"terminal.integrated.shell.linux": "/bin/fish",
"python.pythonPath": "/usr/bin/python",
"python.linting.enabled": true,
"python.linting.pylintEnabled": true,
"python.testing.unittestEnabled": false,
"python.testing.nosetestsEnabled": false,
"python.testing.pyTestEnabled": true,
"python.testing.pyTestArgs": [
"test"
]
},
"extensions": [
"editorconfig.editorconfig",
"laurenttreguier.rpm-spec",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vscode-remote.remote-containers"
]
}