23
23
name : qpod/base
24
24
runs-on : ubuntu-latest
25
25
steps :
26
- - uses : actions/checkout@v2
26
+ - uses : actions/checkout@v3
27
27
- run : |
28
28
source ./tool.sh
29
29
build_image atom latest docker_atom/Dockerfile && push_image
34
34
needs : qpod_base
35
35
runs-on : ubuntu-latest
36
36
steps :
37
- - uses : actions/checkout@v2
37
+ - uses : actions/checkout@v3
38
38
- run : |
39
39
source ./tool.sh
40
40
build_image core latest docker_core/Dockerfile \
@@ -50,55 +50,60 @@ jobs:
50
50
needs : qpod_base
51
51
runs-on : ubuntu-latest
52
52
steps :
53
- - uses : actions/checkout@v2
53
+ - uses : actions/checkout@v3
54
54
- run : source ./tool.sh && build_image py-data latest docker_core/Dockerfile --build-arg "ARG_PROFILE_PYTHON=datascience,mkl,database" && push_image
55
55
56
56
qpod_py-chem :
57
57
name : qpod/py-chem
58
58
needs : qpod_base
59
59
runs-on : ubuntu-latest
60
60
steps :
61
- - uses : actions/checkout@v2
61
+ - uses : actions/checkout@v3
62
62
- run : source ./tool.sh && build_image py-chem latest docker_core/Dockerfile --build-arg "ARG_PROFILE_PYTHON=datascience,mkl,chem" && push_image
63
63
64
64
qpod_py-std :
65
65
name : qpod/py-std
66
66
needs : qpod_base
67
67
runs-on : ubuntu-latest
68
68
steps :
69
- - uses : actions/checkout@v2
69
+ - uses : actions/checkout@v3
70
70
- run : source ./tool.sh && build_image py-std latest docker_core/Dockerfile --build-arg "ARG_PROFILE_PYTHON=datascience,mkl,database,nlp,cv,chem" && push_image
71
71
72
72
qpod_py-jdk :
73
73
name : qpod/py-jdk
74
74
needs : qpod_base
75
75
runs-on : ubuntu-latest
76
76
steps :
77
- - uses : actions/checkout@v2
78
- - run : source ./tool.sh && build_image py-jdk latest docker_core/Dockerfile --build-arg "ARG_PROFILE_PYTHON=datascience,mkl,database,nlp,cv,chem" --build-arg "ARG_PROFILE_JAVA=base" && push_image
77
+ - uses : actions/checkout@v3
78
+ - run : |
79
+ source ./tool.sh
80
+ build_image py-jdk latest docker_core/Dockerfile \
81
+ --build-arg "ARG_PROFILE_PYTHON=datascience,mkl,database,nlp,cv,chem" \
82
+ --build-arg "ARG_PROFILE_JAVA=base"
83
+ push_image
79
84
80
85
qpod_r-base :
81
86
name : qpod/r-base
82
87
needs : qpod_base
83
88
runs-on : ubuntu-latest
84
89
steps :
85
- - uses : actions/checkout@v2
90
+ - uses : actions/checkout@v3
86
91
- run : source ./tool.sh && build_image r-base latest docker_core/Dockerfile --build-arg "ARG_PROFILE_R=base" && push_image
87
92
88
93
qpod_r-std :
89
94
name : qpod/r-std
90
95
needs : qpod_base
91
96
runs-on : ubuntu-latest
92
97
steps :
93
- - uses : actions/checkout@v2
98
+ - uses : actions/checkout@v3
94
99
- run : source ./tool.sh && build_image r-std latest docker_core/Dockerfile --build-arg "ARG_PROFILE_R=base,datascience" --build-arg "ARG_PROFILE_JAVA=base" && push_image
95
100
96
101
qpod_r-latex :
97
102
name : qpod/r-latex
98
103
needs : qpod_base
99
104
runs-on : ubuntu-latest
100
105
steps :
101
- - uses : actions/checkout@v2
106
+ - uses : actions/checkout@v3
102
107
- run : |
103
108
source ./tool.sh
104
109
build_image r-latex latest docker_core/Dockerfile \
@@ -112,7 +117,7 @@ jobs:
112
117
needs : qpod_base
113
118
runs-on : ubuntu-latest
114
119
steps :
115
- - uses : actions/checkout@v2
120
+ - uses : actions/checkout@v3
116
121
- run : |
117
122
source ./tool.sh
118
123
build_image r-studio latest docker_core/Dockerfile \
@@ -126,31 +131,35 @@ jobs:
126
131
needs : qpod_base
127
132
runs-on : ubuntu-latest
128
133
steps :
129
- - uses : actions/checkout@v2
134
+ - uses : actions/checkout@v3
130
135
- run : source ./tool.sh && build_image node latest docker_core/Dockerfile --build-arg "ARG_PROFILE_NODEJS=base" && push_image
131
136
132
137
qpod_jdk :
133
138
name : qpod/jdk
134
139
needs : qpod_base
135
140
runs-on : ubuntu-latest
136
141
steps :
137
- - uses : actions/checkout@v2
138
- - run : source ./tool.sh && build_image jdk latest docker_core/Dockerfile --build-arg "ARG_PROFILE_JAVA=base" && push_image
142
+ - uses : actions/checkout@v3
143
+ - run : |
144
+ source ./tool.sh
145
+ build_image jdk17 latest docker_core/Dockerfile --build-arg "ARG_PROFILE_JAVA=base" --build-arg "VERSION_JDK=17" && push_image
146
+ build_image jdk11 latest docker_core/Dockerfile --build-arg "ARG_PROFILE_JAVA=base" --build-arg "VERSION_JDK=11" && alias_image jdk11 latest jdk latest && push_image
147
+ build_image jdk8 latest docker_core/Dockerfile --build-arg "ARG_PROFILE_JAVA=base" --build-arg "VERSION_JDK=8" && push_image
139
148
140
149
qpod_julia :
141
150
name : qpod/julia
142
151
needs : qpod_base
143
152
runs-on : ubuntu-latest
144
153
steps :
145
- - uses : actions/checkout@v2
154
+ - uses : actions/checkout@v3
146
155
- run : source ./tool.sh && build_image julia latest docker_core/Dockerfile --build-arg "ARG_PROFILE_JULIA=base" && push_image
147
156
148
157
qpod_go :
149
158
name : qpod/go
150
159
needs : qpod_base
151
160
runs-on : ubuntu-latest
152
161
steps :
153
- - uses : actions/checkout@v2
162
+ - uses : actions/checkout@v3
154
163
- run : source ./tool.sh && build_image go latest docker_core/Dockerfile --build-arg "ARG_PROFILE_GO=base" && push_image
155
164
156
165
@@ -161,7 +170,7 @@ jobs:
161
170
name : qpod/cuda_11.6
162
171
runs-on : ubuntu-latest
163
172
steps :
164
- - uses : actions/checkout@v2
173
+ - uses : actions/checkout@v3
165
174
- run : |
166
175
source ./tool.sh
167
176
build_image cuda_11.6 latest docker_atom/Dockerfile --build-arg "BASE_IMG=nvidia/cuda:11.6.2-cudnn8-devel-ubuntu20.04"
@@ -174,7 +183,7 @@ jobs:
174
183
name : qpod/cuda_11.2
175
184
runs-on : ubuntu-latest
176
185
steps :
177
- - uses : actions/checkout@v2
186
+ - uses : actions/checkout@v3
178
187
- run : |
179
188
source ./tool.sh
180
189
build_image cuda_11.2 latest docker_atom/Dockerfile --build-arg "BASE_IMG=nvidia/cuda:11.2.2-cudnn8-devel-ubuntu20.04"
@@ -188,7 +197,7 @@ jobs:
188
197
name : qpod/cuda_10.2
189
198
runs-on : ubuntu-latest
190
199
steps :
191
- - uses : actions/checkout@v2
200
+ - uses : actions/checkout@v3
192
201
- run : |
193
202
source ./tool.sh
194
203
build_image cuda_10.2 latest docker_atom/Dockerfile --build-arg "BASE_IMG=nvidia/cuda:10.2-cudnn8-devel-ubuntu18.04"
@@ -200,7 +209,7 @@ jobs:
200
209
name : qpod/cuda_10.0
201
210
runs-on : ubuntu-latest
202
211
steps :
203
- - uses : actions/checkout@v2
212
+ - uses : actions/checkout@v3
204
213
- run : |
205
214
source ./tool.sh
206
215
build_image cuda_10.0 latest docker_atom/Dockerfile --build-arg "BASE_IMG=nvidia/cuda:10.0-cudnn7-devel-ubuntu18.04"
@@ -213,7 +222,7 @@ jobs:
213
222
needs : qpod_cuda_10_0
214
223
runs-on : ubuntu-latest
215
224
steps :
216
- - uses : actions/checkout@v2
225
+ - uses : actions/checkout@v3
217
226
- run : |
218
227
source ./tool.sh
219
228
build_image tf1-cuda100 latest docker_core/Dockerfile --build-arg "BASE_IMG=cuda_10.0" --build-arg "ARG_PROFILE_PYTHON=tf1"
@@ -225,7 +234,7 @@ jobs:
225
234
needs : qpod_cuda_11_2
226
235
runs-on : ubuntu-latest
227
236
steps :
228
- - uses : actions/checkout@v2
237
+ - uses : actions/checkout@v3
229
238
- run : |
230
239
source ./tool.sh
231
240
build_image tf2-cuda112 latest docker_core/Dockerfile --build-arg "BASE_IMG=cuda_11.2" --build-arg "ARG_PROFILE_PYTHON=tf2"
@@ -237,7 +246,7 @@ jobs:
237
246
needs : qpod_cuda_11_6
238
247
runs-on : ubuntu-latest
239
248
steps :
240
- - uses : actions/checkout@v2
249
+ - uses : actions/checkout@v3
241
250
- run : |
242
251
source ./tool.sh
243
252
build_image torch-cuda116 latest docker_core/Dockerfile --build-arg "BASE_IMG=cuda_11.6" --build-arg "ARG_PROFILE_PYTHON=torch"
@@ -249,7 +258,7 @@ jobs:
249
258
needs : qpod_cuda_10_2
250
259
runs-on : ubuntu-latest
251
260
steps :
252
- - uses : actions/checkout@v2
261
+ - uses : actions/checkout@v3
253
262
- run : |
254
263
source ./tool.sh
255
264
build_image torch-cuda102 latest docker_core/Dockerfile --build-arg "BASE_IMG=cuda_10.2" --build-arg "ARG_PROFILE_PYTHON=torch"
@@ -260,7 +269,7 @@ jobs:
260
269
needs : qpod_cuda_11_6
261
270
runs-on : ubuntu-latest
262
271
steps :
263
- - uses : actions/checkout@v2
272
+ - uses : actions/checkout@v3
264
273
- run : |
265
274
source ./tool.sh
266
275
build_image paddle-cuda116 latest docker_core/Dockerfile --build-arg "BASE_IMG=cuda_11.6" --build-arg "ARG_PROFILE_PYTHON=paddle,mkl"
@@ -272,7 +281,7 @@ jobs:
272
281
needs : qpod_cuda_10_2
273
282
runs-on : ubuntu-latest
274
283
steps :
275
- - uses : actions/checkout@v2
284
+ - uses : actions/checkout@v3
276
285
- run : |
277
286
source ./tool.sh
278
287
build_image paddle-cuda102 latest docker_core/Dockerfile --build-arg "BASE_IMG=cuda_10.2" --build-arg "ARG_PROFILE_PYTHON=paddle,mkl"
@@ -284,7 +293,7 @@ jobs:
284
293
needs : qpod_base
285
294
runs-on : ubuntu-latest
286
295
steps :
287
- - uses : actions/checkout@v2
296
+ - uses : actions/checkout@v3
288
297
- run : |
289
298
source ./tool.sh
290
299
build_image py-nlp-cuda116 latest docker_core/Dockerfile --build-arg "BASE_IMG=cuda_11.6" --build-arg "ARG_PROFILE_PYTHON=datascience,mkl,torch,nlp"
@@ -296,7 +305,7 @@ jobs:
296
305
needs : qpod_base
297
306
runs-on : ubuntu-latest
298
307
steps :
299
- - uses : actions/checkout@v2
308
+ - uses : actions/checkout@v3
300
309
- run : |
301
310
source ./tool.sh
302
311
build_image py-nlp-cuda102 latest docker_core/Dockerfile --build-arg "BASE_IMG=cuda_10.2" --build-arg "ARG_PROFILE_PYTHON=datascience,mkl,torch,nlp"
@@ -308,7 +317,7 @@ jobs:
308
317
needs : qpod_base
309
318
runs-on : ubuntu-latest
310
319
steps :
311
- - uses : actions/checkout@v2
320
+ - uses : actions/checkout@v3
312
321
- run : |
313
322
source ./tool.sh
314
323
build_image py-cv latest docker_core/Dockerfile --build-arg "BASE_IMG=cuda_11.6" --build-arg "ARG_PROFILE_PYTHON=datascience,mkl,torch,cv"
@@ -320,7 +329,7 @@ jobs:
320
329
needs : qpod_cuda_11_6
321
330
runs-on : ubuntu-latest
322
331
steps :
323
- - uses : actions/checkout@v2
332
+ - uses : actions/checkout@v3
324
333
- run : |
325
334
source ./tool.sh && free_diskspace
326
335
build_image full-cuda-11.6 latest docker_core/Dockerfile \
@@ -337,7 +346,7 @@ jobs:
337
346
needs : qpod_core
338
347
runs-on : ubuntu-latest
339
348
steps :
340
- - uses : actions/checkout@v2
349
+ - uses : actions/checkout@v3
341
350
- run : |
342
351
source ./tool.sh
343
352
build_image core-dev latest docker_dev/Dockerfile \
@@ -350,7 +359,7 @@ jobs:
350
359
needs : qpod_core-cuda
351
360
runs-on : ubuntu-latest
352
361
steps :
353
- - uses : actions/checkout@v2
362
+ - uses : actions/checkout@v3
354
363
- run : |
355
364
source ./tool.sh && free_diskspace
356
365
build_image cuda-dev latest docker_dev/Dockerfile \
0 commit comments