Skip to content

Commit

Permalink
vscode task for local build
Browse files Browse the repository at this point in the history
  • Loading branch information
deflinhec committed Dec 25, 2022
1 parent fea6719 commit 5450d04
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .vscode/tasks.json
Expand Up @@ -36,6 +36,21 @@
"dependsOn":[
"Launch services",
],
}
},
{
"label": "Build image",
"command": "docker",
"args": [
"build", ".",
"-t", "heroiclabs/nakama:latest",
],
"options": {
"cwd": "${workspaceFolder}/build"
},
"group": {
"kind": "build",
"isDefault": true
},
},
]
}

0 comments on commit 5450d04

Please sign in to comment.