feat: add devcontainer support

This should make it possible to run tests locally in a lighter way than pulling up a full VM.
This commit is contained in:
Jose Diaz-Gonzalez
2021-09-11 21:06:06 -04:00
parent c18722af2b
commit a03a6d996a
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
{
"build": {
"dockerfile": "Dockerfile",
"context": ".."
},
"runArgs": ["--init"],
"mounts": [ "source=/var/run/docker.sock,target=/var/run/docker.sock,type=bind" ]
}