-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathdocker-bake.hcl
More file actions
134 lines (122 loc) · 3.38 KB
/
docker-bake.hcl
File metadata and controls
134 lines (122 loc) · 3.38 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
variable "GETML_VERSION" {
default = "0.0.0"
}
variable "GETML_BUILD_OUTPUT_DIR" {
default = "build"
}
variable "GETML_CMAKE_FRESH_PRESET" {
default = "false"
}
target "cli" {
args = {
VERSION="${GETML_VERSION}"
}
output = ["type=local,dest=${GETML_BUILD_OUTPUT_DIR},platform-split=false"]
target = "cli"
}
target "engine" {
args = {
CMAKE_FRESH_PRESET="${GETML_CMAKE_FRESH_PRESET}"
ENGINE_REPO_SOURCE="src/engine",
OUTPUT_DIR="${GETML_BUILD_OUTPUT_DIR}"
VERSION="${GETML_VERSION}"
}
dockerfile = "src/engine/Dockerfile"
output = ["type=local,dest=${GETML_BUILD_OUTPUT_DIR},platform-split=false"]
target = "package"
}
target "package" {
args = {
CMAKE_FRESH_PRESET="${GETML_CMAKE_FRESH_PRESET}"
OUTPUT_DIR="${GETML_BUILD_OUTPUT_DIR}"
VERSION="${GETML_VERSION}"
}
# for naming build contexts, we use the following convention:
# <dockerfile-default-context>-<default-foreign-target-stage>
# i.e. the context 'engine-package' by default points to the 'package' target
# inside the engine dockerfile, the context 'monorepo-export' by default
# points to the 'export' target inside the monorepo (root) dockerfile
contexts = {
engine-package = "target:engine"
}
output = ["type=local,dest=${GETML_BUILD_OUTPUT_DIR},platform-split=false"]
target = "export"
}
target "docker" {
args = {
BUILD_OR_COPY_ARTIFACTS="build"
CMAKE_FRESH_PRESET="${GETML_CMAKE_FRESH_PRESET}"
OUTPUT_DIR="${GETML_BUILD_OUTPUT_DIR}"
VERSION="${GETML_VERSION}"
}
contexts = {
monorepo-export = "target:package"
}
dockerfile = "runtime/Dockerfile"
output = ["type=docker"]
tags = ["getml/getml:${GETML_VERSION}", "getml/getml:latest"]
}
target "docker-copy-artifacts" {
args = {
BUILD_OR_COPY_ARTIFACTS="copy"
OUTPUT_DIR="${GETML_BUILD_OUTPUT_DIR}"
VERSION="${GETML_VERSION}"
}
dockerfile = "runtime/Dockerfile"
output = ["type=docker"]
tags = ["getml/getml:${GETML_VERSION}", "getml/getml:latest"]
}
target "python" {
args = {
BUILD_OR_COPY_ARTIFACTS="build"
OUTPUT_DIR="${GETML_BUILD_OUTPUT_DIR}"
VERSION="${GETML_VERSION}"
}
contexts = {
engine-package = "target:engine"
}
output = ["type=local,dest=${GETML_BUILD_OUTPUT_DIR},platform-split=false"]
target = "python"
}
target "python-copy-artifacts" {
args = {
BUILD_OR_COPY_ARTIFACTS="copy"
OUTPUT_DIR="${GETML_BUILD_OUTPUT_DIR}"
VERSION="${GETML_VERSION}"
}
output = ["type=local,dest=${GETML_BUILD_OUTPUT_DIR},platform-split=false"]
target = "python"
}
target "archive-copy-artifacts" {
args = {
BUILD_OR_COPY_ARTIFACTS="copy"
OUTPUT_DIR="${GETML_BUILD_OUTPUT_DIR}"
VERSION="${GETML_VERSION}"
}
output = ["type=local,dest=${GETML_BUILD_OUTPUT_DIR},platform-split=false"]
target = "archive"
}
target "archive" {
args = {
CMAKE_FRESH_PRESET="${GETML_CMAKE_FRESH_PRESET}"
OUTPUT_DIR="${GETML_BUILD_OUTPUT_DIR}"
VERSION="${GETML_VERSION}"
}
contexts = {
engine-package = "target:engine"
}
output = ["type=local,dest=${GETML_BUILD_OUTPUT_DIR},platform-split=false"]
target = "archive"
}
target "all" {
args = {
CMAKE_FRESH_PRESET="${GETML_CMAKE_FRESH_PRESET}"
OUTPUT_DIR="${GETML_BUILD_OUTPUT_DIR}"
VERSION="${GETML_VERSION}"
}
contexts = {
engine-package = "target:engine"
}
output = ["type=local,dest=${GETML_BUILD_OUTPUT_DIR},platform-split=false"]
target = "all"
}