devcontainer: introduce VSCode dev container
Introduce Dockerfile and devcontainer.json specifying how to build and run a containerized development environment in VSCode. The configuration is inspired by the osbuild repo where a similar configuration directory already exists.
This commit is contained in:
parent
471353db60
commit
b7df6ac627
2 changed files with 28 additions and 0 deletions
11
.devcontainer/devcontainer.json
Normal file
11
.devcontainer/devcontainer.json
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{
|
||||
"name": "ComposerBuilder",
|
||||
"build": {
|
||||
"dockerfile": "Dockerfile",
|
||||
"context": ".."
|
||||
},
|
||||
"extensions": [
|
||||
"laurenttreguier.rpm-spec",
|
||||
"golang.Go"
|
||||
]
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue