-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.py
executable file
·261 lines (205 loc) · 6.58 KB
/
build.py
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
#!/usr/bin/env python3
"""Script for building and pushing the Boltz Docker images."""
import os
import sys
from argparse import ArgumentParser
from dataclasses import dataclass
from os import chdir, system
from pathlib import Path
@dataclass
class BuildArgument:
"""Argument of the "docker build" command."""
name: str
value: str
@dataclass
class Image:
"""The tags and build arguments of a Docker image."""
tag: str
arguments: list[BuildArgument]
UBUNTU_VERSION = BuildArgument(
name="UBUNTU_VERSION",
value="24.04",
)
NODE_VERSION = BuildArgument(
name="NODE_VERSION",
value="lts-bookworm",
)
NGINX_VERSION = BuildArgument(
name="NGINX_VERSION",
value="alpine",
)
CLN_VERSION = "24.08.1"
ELECTRS_VERSION = "new-index-6d182d"
IMAGES: dict[str, Image] = {
"electrs": Image(
tag=ELECTRS_VERSION,
arguments=[
UBUNTU_VERSION,
],
),
"esplora": Image(
tag="latest",
arguments=[
NODE_VERSION,
NGINX_VERSION,
],
),
"foundry": Image(
tag="latest",
arguments=[
UBUNTU_VERSION,
],
),
"rif-relay": Image(
tag="latest",
arguments=[
NODE_VERSION
],
),
"scripts": Image(
tag="latest",
arguments=[
UBUNTU_VERSION,
],
),
"c-lightning-plugins": Image(
tag=CLN_VERSION,
arguments=[],
),
}
def print_step(message: str) -> None:
"""Print green text and is used to log the step of a process."""
print(f"\033[0;32m{message}\033[0;0m")
def print_error(message: str) -> None:
"""Print red text and is used to report errors."""
print(f"\033[1;31m{message}\033[0;0m")
def change_working_directory() -> None:
"""Change the working directory to the one this script is located in."""
directory = Path(__file__).parent
chdir(directory)
def get_build_details(image: str) -> Image:
"""Get the build details of an image or exits the script if they can't be found."""
build_details = IMAGES.get(image)
if not build_details:
print_error(f"Could not find image {image}")
sys.exit(1)
return build_details
def list_images(to_list: list[str]) -> None:
"""List the version and build arguments of either one or all images."""
print("Images:")
for image in to_list:
build_details = get_build_details(image)
print(f" - {image}")
print(f" Tag: {build_details.tag}")
print()
if build_details.arguments:
print(" Build arguments:")
for argument in build_details.arguments:
print(f" - {argument.name}={argument.value}")
print()
def build_images(
to_build: list[str],
organisation: str,
no_cache: bool,
no_latest: bool,
branch: str,
buildx: bool,
platform: str = "",
) -> None:
"""Build one or more images."""
for image in to_build:
change_working_directory()
build_details = get_build_details(image)
tag = build_details.tag
if branch in ["master", "main"]:
tag = "latest"
elif branch != "":
tag = branch
build_args = [f"{arg.name}={arg.value}" for arg in build_details.arguments]
# Add the prefix "--build-arg " to every entry and
# join the array to a string
args = " ".join(["--build-arg " + entry for entry in build_args])
name = f"{organisation}/{image}"
dockerfile = f"images/{image}/Dockerfile"
if buildx:
extra_tag = "" if no_latest else f"--tag {name}:latest"
command = (
f"docker buildx build --push {args} --platform {platform} "
f"--tag {name}:{tag} {extra_tag} ."
)
else:
extra_tag = "" if no_latest else f"-t {name}:latest"
command = f"docker build -t {name}:{tag} {extra_tag} {args} ."
if no_cache:
command = command + " --no-cache"
print()
print_step(f"Building {image}:{tag}")
print(command)
print()
os.chdir(os.path.dirname(dockerfile))
if system(command) != 0:
print_error(f"Could not build image {image}")
sys.exit(1)
print()
print_step("Built images: {}".format(", ".join(to_build)))
def parse_images(to_parse: list[str]) -> list[str]:
"""Return all available images if none was specified."""
if not to_parse:
return list(IMAGES.keys())
return to_parse
if __name__ == "__main__":
PARSER = ArgumentParser(description="Build or push Docker images")
# CLI commands
SUB_PARSERS = PARSER.add_subparsers(dest="command")
SUB_PARSERS.required = True
LIST_PARSER = SUB_PARSERS.add_parser("list")
BUILD_PARSER = SUB_PARSERS.add_parser("build")
BUILDX_PARSER = SUB_PARSERS.add_parser("buildx")
# CLI arguments
LIST_PARSER.add_argument("images", type=str, nargs="*")
BUILD_PARSER.add_argument("images", type=str, nargs="*")
BUILD_PARSER.add_argument("--no-cache", dest="no_cache", action="store_true")
BUILD_PARSER.add_argument("--no-latest", dest="no_latest", action="store_true")
BUILD_PARSER.add_argument("--branch", default="", help="Branch to build")
BUILD_PARSER.add_argument(
"--organisation",
default="boltz",
help="The organisation to use for the image names",
)
BUILDX_PARSER.add_argument("images", type=str, nargs="*")
BUILDX_PARSER.add_argument("--no-cache", dest="no_cache", action="store_true")
BUILDX_PARSER.add_argument("--no-latest", dest="no_latest", action="store_true")
BUILDX_PARSER.add_argument("--branch", default="", help="Branch to build")
BUILDX_PARSER.add_argument(
"--platform",
default="linux/amd64,linux/arm64",
help="The platforms to build for",
)
BUILDX_PARSER.add_argument(
"--organisation",
default="boltz",
help="The organisation to use for the image names",
)
ARGS = PARSER.parse_args()
PARSED_IMAGES = parse_images(ARGS.images)
if ARGS.command == "list":
list_images(PARSED_IMAGES)
elif ARGS.command == "build":
build_images(
PARSED_IMAGES,
ARGS.organisation,
ARGS.no_cache,
ARGS.no_latest,
ARGS.branch,
False,
)
elif ARGS.command == "buildx":
build_images(
PARSED_IMAGES,
ARGS.organisation,
ARGS.no_cache,
ARGS.no_latest,
ARGS.branch,
True,
ARGS.platform,
)