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.
11 lines
173 B
JSON
11 lines
173 B
JSON
{
|
|
"name": "ComposerBuilder",
|
|
"build": {
|
|
"dockerfile": "Dockerfile",
|
|
"context": ".."
|
|
},
|
|
"extensions": [
|
|
"laurenttreguier.rpm-spec",
|
|
"golang.Go"
|
|
]
|
|
}
|