From 18c9e59a945d16bd4642d71cc0cba28078e2f5a5 Mon Sep 17 00:00:00 2001 From: yeti Date: Fri, 25 Apr 2025 07:11:54 +0100 Subject: [PATCH] feat(tasks): add tasks.json --- .vscode/tasks.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..c1e0577 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,35 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "Build workspace image", + "type": "shell", + "command": "./build-workspace.sh", + "group": "build", + "problemMatcher": [], + "detail": "build podman image using buildah" + }, + { + "label": "Clean dangling images", + "type": "shell", + "command": "./clean_dangling_images.sh", + "problemMatcher": [], + "detail": "Clean podman images" + }, + { + "label": "Tag image", + "type": "shell", + "command": "podman tag localhost/analytics-backend-workspace:latest localhost:5100/analytics-backend-workspace:latest", + "problemMatcher": [], + "detail": "Tag podman image to localhost 5100" + }, + { + "label": "Push image", + "type": "shell", + "command": "podman push --tls-verify=false localhost:5100/analytics-backend-workspace:latest", + "problemMatcher": [], + "detail": "Push podman image to localhost 5100" + } + ], + "inputs": [] +}