add docker build tasks

This commit is contained in:
beckerinj
2022-11-24 13:32:50 -08:00
parent 192363bb64
commit 96127b52e6

10
.vscode/tasks.json vendored
View File

@@ -67,6 +67,16 @@
"options": {
"cwd": "${workspaceFolder}/cli"
},
},
{
"type": "shell",
"command": "docker build -t monitor_periphery -f Dockerfile.periphery .",
"label": "docker build periphery"
},
{
"type": "shell",
"command": "docker build -t monitor_core -f Dockerfile.core .",
"label": "docker build core"
}
]
}