Oleg Shulyakov commited on
Commit
ac04c37
·
1 Parent(s): 7ae2e5a
Files changed (1) hide show
  1. .vscode/tasks.json +21 -0
.vscode/tasks.json ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "label": "clean",
6
+ "type": "shell",
7
+ "command": "docker image rm -f gguf-my-repo",
8
+ "group": "build"
9
+ },
10
+ {
11
+ "label": "build",
12
+ "type": "shell",
13
+ "command": "docker build --platform=linux/amd64 --progress plain -t gguf-my-repo .",
14
+ "group": {
15
+ "kind": "build",
16
+ "isDefault": true
17
+ },
18
+ "dependsOn": ["clean"]
19
+ }
20
+ ]
21
+ }