{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "Build and Push Docker Image", "type": "shell", "command": "docker build . -t registry.lehouerou.net/godev:latest && docker push registry.lehouerou.net/godev:latest", "group": { "kind": "build", "isDefault": true }, "problemMatcher": [] }, { "label": "Build and Push Docker Image No Cache", "type": "shell", "command": "docker build . -t registry.lehouerou.net/godev:latest --no-cache && docker push registry.lehouerou.net/godev:latest", "group": { "kind": "build" }, "problemMatcher": [] } ] }