-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcache-push.hcl
63 lines (47 loc) · 1.84 KB
/
cache-push.hcl
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
# cache-push.hcl
BUILD_N_THREADS="6"
variable "dockerhub-user-push" {
default = "scilus"
}
variable "cache-parameters" {
default = "mode=max,image-manifest=true,oci-mediatypes=true,compression=zstd,compression-level=9,force-compression=true"
}
target "actions-runner" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:actions-runner"]
}
target "actions-runner-vtk" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:actions-runner-vtk"]
}
target "scilus" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:scilus"]
}
target "scilus-base" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:scilus-base"]
}
target "scilpy-base" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:scilpy"]
}
target "dmriqcpy-base" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:dmriqcpy"]
}
target "cmake" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:cmake"]
}
target "vtk" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:vtk"]
}
target "ants" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:ants"]
}
target "mrtrix" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:mrtrix"]
}
target "fsl" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:fsl"]
}
target "scilus-flows" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:scilus-flows"]
}
target "scilus-fsl" {
cache-to = ["type=registry,${cache-parameters},ref=${dockerhub-user-push}/build-cache:scilus-deps"]
}