-
Notifications
You must be signed in to change notification settings - Fork 11
/
templates.json
109 lines (108 loc) · 2.78 KB
/
templates.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[
{
"name": "Deno app",
"installs": [
{
"name": "Deno app alpine OS",
"path": "../templates/dockerfiles/Deno_app_alpine.dockerfile"
},
{
"name": "Deno app binary only",
"path": "../templates/dockerfiles/Deno_app_bin.dockerfile"
}
]
},
{
"name": "Nodejs app",
"installs": [
{
"name": "Nodejs app with npm",
"path": "../templates/dockerfiles/Nodejs_app.dockerfile",
"ignoreFilePath": "../templates/ignorefiles/Nodejs_app"
},
{
"name": "Nodejs app with yarn",
"path": "../templates/dockerfiles/Nodejs_app_yarn.dockerfile",
"ignoreFilePath": "../templates/ignorefiles/Nodejs_app"
}
]
},
{
"name": "Bun app",
"installs": [
{
"name": "Bun app with bun package manager",
"path": "../templates/dockerfiles/Bun_app.dockerfile",
"ignoreFilePath": "../templates/ignorefiles/Bun_app"
}
]
},
{
"name": "Reactjs app",
"installs": [
{
"name": "Reactjs app with npm",
"path": "../templates/dockerfiles/Reactjs_app.dockerfile",
"ignoreFilePath": "../templates/ignorefiles/Reactjs_app"
},
{
"name": "Reactjs app with yarn",
"path": "../templates/dockerfiles/Reactjs_app_yarn.dockerfile",
"ignoreFilePath": "../templates/ignorefiles/Reactjs_app"
}
]
},
{
"name": "Vuejs app",
"installs": [
{
"name": "Vuejs app with npm",
"path": "../templates/dockerfiles/Vuejs_app.dockerfile",
"ignoreFilePath": "../templates/ignorefiles/Vuejs_app"
},
{
"name": "Vuejs app with yarn",
"path": "../templates/dockerfiles/Vuejs_app_yarn.dockerfile",
"ignoreFilePath": "../templates/ignorefiles/Vuejs_app"
}
]
},
{
"name": "Angular app",
"installs": [
{
"name": "Angular app with npm",
"path": "../templates/dockerfiles/Angular_app.dockerfile",
"ignoreFilePath": "../templates/ignorefiles/Angular_app"
},
{
"name": "Angular app with yarn",
"path": "../templates/dockerfiles/Angular_app_yarn.dockerfile",
"ignoreFilePath": "../templates/ignorefiles/Angular_app"
}
]
},
{
"name": "Rust app",
"installs": [
{
"name": "Rust app with cargo",
"path": "../templates/dockerfiles/Rust_app_cargo.dockerfile",
"ignoreFilePath": "../templates/ignorefiles/Rust_app_cargo"
},
{
"name": "Rust app with rustc",
"path": "../templates/dockerfiles/Rust_app_rustc.dockerfile"
}
]
},
{
"name": "Go app",
"installs": [
{
"name": "Go app ",
"path": "../templates/dockerfiles/Go_app.dockerfile"
}
]
}
]