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:
Martin Sehnoutka 2021-06-23 10:40:52 +02:00 committed by Ondřej Budai
parent 471353db60
commit b7df6ac627
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{
"name": "ComposerBuilder",
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"extensions": [
"laurenttreguier.rpm-spec",
"golang.Go"
]
}