blob: 8f902aaadc88535c14f4ce1466f3a5bd918d0184 [file] [log] [blame]
Patrick Williams02871c92021-02-01 20:57:19 -06001#!/usr/bin/env python3
2#
3# Build the required docker image to run package unit tests
4#
5# Script Variables:
6# DOCKER_IMG_NAME: <optional, the name of the docker image to generate>
7# default is openbmc/ubuntu-unit-test
8# DISTRO: <optional, the distro to build a docker image against>
Patrick Williams50837432021-02-06 12:24:05 -06009# FORCE_DOCKER_BUILD: <optional, a non-zero value with force all Docker
10# images to be rebuilt rather than reusing caches.>
11# BUILD_URL: <optional, used to detect running under CI context
12# (ex. Jenkins)>
Patrick Williams02871c92021-02-01 20:57:19 -060013# BRANCH: <optional, branch to build from each of the openbmc/
14# repositories>
15# default is master, which will be used if input branch not
16# provided or not found
17# UBUNTU_MIRROR: <optional, the URL of a mirror of Ubuntu to override the
18# default ones in /etc/apt/sources.list>
19# default is empty, and no mirror is used.
20# http_proxy The HTTP address of the proxy server to connect to.
21# Default: "", proxy is not setup if this is not set
22
23import os
24import sys
Patrick Williamsb16f3e22021-02-06 08:16:47 -060025import threading
Patrick Williamsa18d9c52021-02-05 09:52:26 -060026from datetime import date
27from hashlib import sha256
Patrick Williamse08ffba2022-12-05 10:33:46 -060028
29# typing.Dict is used for type-hints.
30from typing import Any, Callable, Dict, Iterable, Optional # noqa: F401
Patrick Williams02871c92021-02-01 20:57:19 -060031
Patrick Williams41d86212022-11-25 18:28:43 -060032from sh import docker, git, nproc, uname # type: ignore
33
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060034try:
35 # Python before 3.8 doesn't have TypedDict, so reroute to standard 'dict'.
36 from typing import TypedDict
Patrick Williams41d86212022-11-25 18:28:43 -060037except Exception:
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060038
39 class TypedDict(dict): # type: ignore
40 # We need to do this to eat the 'total' argument.
Patrick Williams41d86212022-11-25 18:28:43 -060041 def __init_subclass__(cls, **kwargs: Any) -> None:
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060042 super().__init_subclass__()
43
44
45# Declare some variables used in package definitions.
Patrick Williamsaae36d12021-02-04 16:30:04 -060046prefix = "/usr/local"
Patrick Williams02871c92021-02-01 20:57:19 -060047proc_count = nproc().strip()
Patrick Williams02871c92021-02-01 20:57:19 -060048
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060049
50class PackageDef(TypedDict, total=False):
Patrick Williams05fb2a02022-10-11 17:22:33 -050051 """Package Definition for packages dictionary."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060052
53 # rev [optional]: Revision of package to use.
54 rev: str
55 # url [optional]: lambda function to create URL: (package, rev) -> url.
56 url: Callable[[str, str], str]
57 # depends [optional]: List of package dependencies.
58 depends: Iterable[str]
59 # build_type [required]: Build type used for package.
60 # Currently supported: autoconf, cmake, custom, make, meson
61 build_type: str
62 # build_steps [optional]: Steps to run for 'custom' build_type.
63 build_steps: Iterable[str]
64 # config_flags [optional]: List of options to pass configuration tool.
65 config_flags: Iterable[str]
66 # config_env [optional]: List of environment variables to set for config.
67 config_env: Iterable[str]
68 # custom_post_dl [optional]: List of steps to run after download, but
69 # before config / build / install.
70 custom_post_dl: Iterable[str]
Patrick Williams6bce2ca2021-02-12 21:13:37 -060071 # custom_post_install [optional]: List of steps to run after install.
72 custom_post_install: Iterable[str]
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060073
74 # __tag [private]: Generated Docker tag name for package stage.
75 __tag: str
76 # __package [private]: Package object associated with this package.
77 __package: Any # Type is Package, but not defined yet.
78
Patrick Williams02871c92021-02-01 20:57:19 -060079
Patrick Williams72043242021-02-02 10:31:45 -060080# Packages to include in image.
81packages = {
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060082 "boost": PackageDef(
Ed Tanous78173cd2023-05-05 14:12:38 -070083 rev="1.82.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060084 url=(
Ed Tanous45bfd1f2022-11-30 15:50:28 -080085 lambda pkg, rev: f"https://boostorg.jfrog.io/artifactory/main/release/{rev}/source/{pkg}_{rev.replace('.', '_')}.tar.gz" # noqa: E501
Patrick Williams2abc4a42021-02-03 06:11:40 -060086 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060087 build_type="custom",
88 build_steps=[
Patrick Williamse08ffba2022-12-05 10:33:46 -060089 (
Brad Bishop782f41f2023-05-17 15:36:16 -040090 "curl --remote-name"
Patrick Williams876ea1e2023-05-11 16:32:27 -050091 " https://github.com/williamspatrick/beast/commit/98f8b1fbd059a35754c2c7b2841769cf8d021272.patch"
92 " && patch -p2 <"
93 " 98f8b1fbd059a35754c2c7b2841769cf8d021272.patch &&"
94 " ./bootstrap.sh"
Patrick Williamse08ffba2022-12-05 10:33:46 -060095 f" --prefix={prefix} --with-libraries=context,coroutine"
96 ),
Patrick Williamsaae36d12021-02-04 16:30:04 -060097 "./b2",
98 f"./b2 install --prefix={prefix}",
99 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600100 ),
101 "USCiLab/cereal": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500102 rev="v1.3.2",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600103 build_type="custom",
104 build_steps=[f"cp -a include/cereal/ {prefix}/include/"],
105 ),
Ed Tanousc7198552022-07-01 08:15:50 -0700106 "danmar/cppcheck": PackageDef(
Patrick Williamsbe4bd082022-10-03 08:59:12 -0500107 rev="2.9",
Ed Tanousc7198552022-07-01 08:15:50 -0700108 build_type="cmake",
109 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600110 "CLIUtils/CLI11": PackageDef(
111 rev="v1.9.1",
112 build_type="cmake",
113 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600114 "-DBUILD_TESTING=OFF",
115 "-DCLI11_BUILD_DOCS=OFF",
116 "-DCLI11_BUILD_EXAMPLES=OFF",
117 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600118 ),
119 "fmtlib/fmt": PackageDef(
William A. Kennington III652d8ae2022-10-02 17:01:16 -0700120 rev="9.1.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600121 build_type="cmake",
122 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600123 "-DFMT_DOC=OFF",
124 "-DFMT_TEST=OFF",
125 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600126 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600127 "Naios/function2": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500128 rev="4.2.1",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600129 build_type="custom",
130 build_steps=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600131 f"mkdir {prefix}/include/function2",
132 f"cp include/function2/function2.hpp {prefix}/include/function2/",
133 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600134 ),
Patrick Williamsed9414e2022-09-08 11:23:01 -0500135 # release-1.12.1
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600136 "google/googletest": PackageDef(
Patrick Williamsed9414e2022-09-08 11:23:01 -0500137 rev="58d77fa8070e8cec2dc1ed015d66b454c8d78850",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600138 build_type="cmake",
William A. Kennington III4dd32c02021-05-28 01:58:13 -0700139 config_env=["CXXFLAGS=-std=c++20"],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600140 config_flags=["-DTHREADS_PREFER_PTHREAD_FLAG=ON"],
141 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600142 "nlohmann/json": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500143 rev="v3.11.2",
Patrick Williams6bce2ca2021-02-12 21:13:37 -0600144 build_type="cmake",
145 config_flags=["-DJSON_BuildTests=OFF"],
146 custom_post_install=[
Patrick Williamse08ffba2022-12-05 10:33:46 -0600147 (
148 f"ln -s {prefix}/include/nlohmann/json.hpp"
149 f" {prefix}/include/json.hpp"
150 ),
Patrick Williamsaae36d12021-02-04 16:30:04 -0600151 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600152 ),
Przemyslaw Czarnowski058e3a32022-12-21 14:13:23 +0100153 "json-c/json-c": PackageDef(
154 rev="json-c-0.16-20220414",
155 build_type="cmake",
156 ),
Patrick Williams02871c92021-02-01 20:57:19 -0600157 # Snapshot from 2019-05-24
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600158 "linux-test-project/lcov": PackageDef(
159 rev="v1.15",
160 build_type="make",
161 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600162 "LibVNC/libvncserver": PackageDef(
163 rev="LibVNCServer-0.9.13",
164 build_type="cmake",
165 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600166 "leethomason/tinyxml2": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500167 rev="9.0.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600168 build_type="cmake",
169 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600170 "tristanpenman/valijson": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500171 rev="v0.7",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600172 build_type="cmake",
173 config_flags=[
Patrick Williams0eedeed2021-02-06 19:06:09 -0600174 "-Dvalijson_BUILD_TESTS=0",
175 "-Dvalijson_INSTALL_HEADERS=1",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600176 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600177 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600178 "open-power/pdbg": PackageDef(build_type="autoconf"),
179 "openbmc/gpioplus": PackageDef(
180 depends=["openbmc/stdplus"],
181 build_type="meson",
182 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600183 "-Dexamples=false",
184 "-Dtests=disabled",
185 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600186 ),
187 "openbmc/phosphor-dbus-interfaces": PackageDef(
188 depends=["openbmc/sdbusplus"],
189 build_type="meson",
William A. Kennington III4fe87772022-02-11 15:44:29 -0800190 config_flags=["-Dgenerate_md=false"],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600191 ),
192 "openbmc/phosphor-logging": PackageDef(
193 depends=[
Patrick Williams83394612021-02-03 07:12:50 -0600194 "USCiLab/cereal",
Patrick Williams83394612021-02-03 07:12:50 -0600195 "openbmc/phosphor-dbus-interfaces",
196 "openbmc/sdbusplus",
197 "openbmc/sdeventplus",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600198 ],
Patrick Williamsf79ce4c2021-04-30 16:00:49 -0500199 build_type="meson",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600200 config_flags=[
William A. Kennington III6c98f282022-10-05 13:37:04 -0700201 "-Dlibonly=true",
202 "-Dtests=disabled",
Patrick Williams5eabdae2022-04-14 14:34:34 -0500203 f"-Dyamldir={prefix}/share/phosphor-dbus-yaml/yaml",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600204 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600205 ),
206 "openbmc/phosphor-objmgr": PackageDef(
207 depends=[
Brad Bishop11e57622022-09-14 16:10:25 -0400208 "CLIUtils/CLI11",
Patrick Williams70af95c2022-09-27 16:55:41 -0500209 "boost",
Patrick Williams83394612021-02-03 07:12:50 -0600210 "leethomason/tinyxml2",
Patrick Williams70af95c2022-09-27 16:55:41 -0500211 "openbmc/phosphor-dbus-interfaces",
Patrick Williams83394612021-02-03 07:12:50 -0600212 "openbmc/phosphor-logging",
213 "openbmc/sdbusplus",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600214 ],
Brad Bishop1197e352021-08-03 19:25:46 -0400215 build_type="meson",
216 config_flags=[
217 "-Dtests=disabled",
218 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600219 ),
Manojkiran Eda1c19e452022-10-03 11:01:59 +0530220 "openbmc/libpldm": PackageDef(
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600221 build_type="meson",
222 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600223 "-Doem-ibm=enabled",
224 "-Dtests=disabled",
225 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600226 ),
227 "openbmc/sdbusplus": PackageDef(
228 build_type="meson",
229 custom_post_dl=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600230 "cd tools",
231 f"./setup.py install --root=/ --prefix={prefix}",
232 "cd ..",
233 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600234 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600235 "-Dexamples=disabled",
236 "-Dtests=disabled",
237 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600238 ),
239 "openbmc/sdeventplus": PackageDef(
Patrick Williams70af95c2022-09-27 16:55:41 -0500240 depends=[
241 "Naios/function2",
242 "openbmc/stdplus",
243 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600244 build_type="meson",
245 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600246 "-Dexamples=false",
247 "-Dtests=disabled",
248 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600249 ),
250 "openbmc/stdplus": PackageDef(
Patrick Williams70af95c2022-09-27 16:55:41 -0500251 depends=[
Patrick Williams70af95c2022-09-27 16:55:41 -0500252 "fmtlib/fmt",
William A. Kennington IIIca1bf0c2022-10-05 02:23:30 -0700253 "google/googletest",
254 "Naios/function2",
Patrick Williams70af95c2022-09-27 16:55:41 -0500255 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600256 build_type="meson",
257 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600258 "-Dexamples=false",
259 "-Dtests=disabled",
William A. Kennington IIIca1bf0c2022-10-05 02:23:30 -0700260 "-Dgtest=enabled",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600261 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600262 ),
263} # type: Dict[str, PackageDef]
Patrick Williams02871c92021-02-01 20:57:19 -0600264
265# Define common flags used for builds
Patrick Williams02871c92021-02-01 20:57:19 -0600266configure_flags = " ".join(
267 [
268 f"--prefix={prefix}",
269 ]
270)
271cmake_flags = " ".join(
272 [
Patrick Williams02871c92021-02-01 20:57:19 -0600273 "-DBUILD_SHARED_LIBS=ON",
Patrick Williams0f2086b2021-02-05 06:49:49 -0600274 "-DCMAKE_BUILD_TYPE=RelWithDebInfo",
Patrick Williams02871c92021-02-01 20:57:19 -0600275 f"-DCMAKE_INSTALL_PREFIX:PATH={prefix}",
Patrick Williams0f2086b2021-02-05 06:49:49 -0600276 "-GNinja",
277 "-DCMAKE_MAKE_PROGRAM=ninja",
Patrick Williams02871c92021-02-01 20:57:19 -0600278 ]
279)
280meson_flags = " ".join(
281 [
282 "--wrap-mode=nodownload",
283 f"-Dprefix={prefix}",
284 ]
285)
286
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600287
288class Package(threading.Thread):
289 """Class used to build the Docker stages for each package.
290
291 Generally, this class should not be instantiated directly but through
292 Package.generate_all().
293 """
294
295 # Copy the packages dictionary.
296 packages = packages.copy()
297
298 # Lock used for thread-safety.
299 lock = threading.Lock()
300
301 def __init__(self, pkg: str):
Patrick Williams05fb2a02022-10-11 17:22:33 -0500302 """pkg - The name of this package (ex. foo/bar )"""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600303 super(Package, self).__init__()
304
305 self.package = pkg
306 self.exception = None # type: Optional[Exception]
307
308 # Reference to this package's
309 self.pkg_def = Package.packages[pkg]
310 self.pkg_def["__package"] = self
311
312 def run(self) -> None:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500313 """Thread 'run' function. Builds the Docker stage."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600314
315 # In case this package has no rev, fetch it from Github.
316 self._update_rev()
317
318 # Find all the Package objects that this package depends on.
319 # This section is locked because we are looking into another
320 # package's PackageDef dict, which could be being modified.
321 Package.lock.acquire()
322 deps: Iterable[Package] = [
323 Package.packages[deppkg]["__package"]
324 for deppkg in self.pkg_def.get("depends", [])
325 ]
326 Package.lock.release()
327
328 # Wait until all the depends finish building. We need them complete
329 # for the "COPY" commands.
330 for deppkg in deps:
331 deppkg.join()
332
333 # Generate this package's Dockerfile.
334 dockerfile = f"""
335FROM {docker_base_img_name}
336{self._df_copycmds()}
337{self._df_build()}
338"""
339
340 # Generate the resulting tag name and save it to the PackageDef.
341 # This section is locked because we are modifying the PackageDef,
342 # which can be accessed by other threads.
343 Package.lock.acquire()
344 tag = Docker.tagname(self._stagename(), dockerfile)
345 self.pkg_def["__tag"] = tag
346 Package.lock.release()
347
348 # Do the build / save any exceptions.
349 try:
350 Docker.build(self.package, tag, dockerfile)
351 except Exception as e:
352 self.exception = e
353
354 @classmethod
355 def generate_all(cls) -> None:
356 """Ensure a Docker stage is created for all defined packages.
357
358 These are done in parallel but with appropriate blocking per
359 package 'depends' specifications.
360 """
361
362 # Create a Package for each defined package.
363 pkg_threads = [Package(p) for p in cls.packages.keys()]
364
365 # Start building them all.
Patrick Williams6dbd7802021-02-20 08:34:10 -0600366 # This section is locked because threads depend on each other,
367 # based on the packages, and they cannot 'join' on a thread
368 # which is not yet started. Adding a lock here allows all the
369 # threads to start before they 'join' their dependencies.
370 Package.lock.acquire()
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600371 for t in pkg_threads:
372 t.start()
Patrick Williams6dbd7802021-02-20 08:34:10 -0600373 Package.lock.release()
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600374
375 # Wait for completion.
376 for t in pkg_threads:
377 t.join()
378 # Check if the thread saved off its own exception.
379 if t.exception:
380 print(f"Package {t.package} failed!", file=sys.stderr)
381 raise t.exception
382
383 @staticmethod
384 def df_all_copycmds() -> str:
385 """Formulate the Dockerfile snippet necessary to copy all packages
386 into the final image.
387 """
388 return Package.df_copycmds_set(Package.packages.keys())
389
390 @classmethod
391 def depcache(cls) -> str:
392 """Create the contents of the '/tmp/depcache'.
393 This file is a comma-separated list of "<pkg>:<rev>".
394 """
395
396 # This needs to be sorted for consistency.
397 depcache = ""
398 for pkg in sorted(cls.packages.keys()):
399 depcache += "%s:%s," % (pkg, cls.packages[pkg]["rev"])
400 return depcache
401
402 def _update_rev(self) -> None:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500403 """Look up the HEAD for missing a static rev."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600404
405 if "rev" in self.pkg_def:
406 return
407
Patrick Williams65b21fb2021-02-12 21:21:14 -0600408 # Check if Jenkins/Gerrit gave us a revision and use it.
409 if gerrit_project == self.package and gerrit_rev:
410 print(
411 f"Found Gerrit revision for {self.package}: {gerrit_rev}",
412 file=sys.stderr,
413 )
414 self.pkg_def["rev"] = gerrit_rev
415 return
416
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600417 # Ask Github for all the branches.
Patrick Williams05fb2a02022-10-11 17:22:33 -0500418 lookup = git(
419 "ls-remote", "--heads", f"https://github.com/{self.package}"
420 )
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600421
422 # Find the branch matching {branch} (or fallback to master).
423 # This section is locked because we are modifying the PackageDef.
424 Package.lock.acquire()
425 for line in lookup.split("\n"):
426 if f"refs/heads/{branch}" in line:
427 self.pkg_def["rev"] = line.split()[0]
Patrick Williamsc7d73642022-10-11 17:22:06 -0500428 elif (
429 "refs/heads/master" in line or "refs/heads/main" in line
430 ) and "rev" not in self.pkg_def:
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600431 self.pkg_def["rev"] = line.split()[0]
432 Package.lock.release()
433
434 def _stagename(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500435 """Create a name for the Docker stage associated with this pkg."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600436 return self.package.replace("/", "-").lower()
437
438 def _url(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500439 """Get the URL for this package."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600440 rev = self.pkg_def["rev"]
441
442 # If the lambda exists, call it.
443 if "url" in self.pkg_def:
444 return self.pkg_def["url"](self.package, rev)
445
446 # Default to the github archive URL.
447 return f"https://github.com/{self.package}/archive/{rev}.tar.gz"
448
449 def _cmd_download(self) -> str:
450 """Formulate the command necessary to download and unpack to source."""
451
452 url = self._url()
453 if ".tar." not in url:
454 raise NotImplementedError(
455 f"Unhandled download type for {self.package}: {url}"
456 )
457
458 cmd = f"curl -L {url} | tar -x"
459
460 if url.endswith(".bz2"):
461 cmd += "j"
462 elif url.endswith(".gz"):
463 cmd += "z"
464 else:
465 raise NotImplementedError(
466 f"Unknown tar flags needed for {self.package}: {url}"
467 )
468
469 return cmd
470
471 def _cmd_cd_srcdir(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500472 """Formulate the command necessary to 'cd' into the source dir."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600473 return f"cd {self.package.split('/')[-1]}*"
474
475 def _df_copycmds(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500476 """Formulate the dockerfile snippet necessary to COPY all depends."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600477
478 if "depends" not in self.pkg_def:
479 return ""
480 return Package.df_copycmds_set(self.pkg_def["depends"])
481
482 @staticmethod
483 def df_copycmds_set(pkgs: Iterable[str]) -> str:
484 """Formulate the Dockerfile snippet necessary to COPY a set of
485 packages into a Docker stage.
486 """
487
488 copy_cmds = ""
489
490 # Sort the packages for consistency.
491 for p in sorted(pkgs):
492 tag = Package.packages[p]["__tag"]
493 copy_cmds += f"COPY --from={tag} {prefix} {prefix}\n"
494 # Workaround for upstream docker bug and multiple COPY cmds
495 # https://github.com/moby/moby/issues/37965
496 copy_cmds += "RUN true\n"
497
498 return copy_cmds
499
500 def _df_build(self) -> str:
501 """Formulate the Dockerfile snippet necessary to download, build, and
502 install a package into a Docker stage.
503 """
504
505 # Download and extract source.
506 result = f"RUN {self._cmd_download()} && {self._cmd_cd_srcdir()} && "
507
508 # Handle 'custom_post_dl' commands.
509 custom_post_dl = self.pkg_def.get("custom_post_dl")
510 if custom_post_dl:
511 result += " && ".join(custom_post_dl) + " && "
512
513 # Build and install package based on 'build_type'.
514 build_type = self.pkg_def["build_type"]
515 if build_type == "autoconf":
516 result += self._cmd_build_autoconf()
517 elif build_type == "cmake":
518 result += self._cmd_build_cmake()
519 elif build_type == "custom":
520 result += self._cmd_build_custom()
521 elif build_type == "make":
522 result += self._cmd_build_make()
523 elif build_type == "meson":
524 result += self._cmd_build_meson()
525 else:
526 raise NotImplementedError(
527 f"Unhandled build type for {self.package}: {build_type}"
528 )
529
Patrick Williams6bce2ca2021-02-12 21:13:37 -0600530 # Handle 'custom_post_install' commands.
531 custom_post_install = self.pkg_def.get("custom_post_install")
532 if custom_post_install:
533 result += " && " + " && ".join(custom_post_install)
534
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600535 return result
536
537 def _cmd_build_autoconf(self) -> str:
538 options = " ".join(self.pkg_def.get("config_flags", []))
539 env = " ".join(self.pkg_def.get("config_env", []))
540 result = "./bootstrap.sh && "
541 result += f"{env} ./configure {configure_flags} {options} && "
542 result += f"make -j{proc_count} && make install"
543 return result
544
545 def _cmd_build_cmake(self) -> str:
546 options = " ".join(self.pkg_def.get("config_flags", []))
547 env = " ".join(self.pkg_def.get("config_env", []))
548 result = "mkdir builddir && cd builddir && "
549 result += f"{env} cmake {cmake_flags} {options} .. && "
550 result += "cmake --build . --target all && "
551 result += "cmake --build . --target install && "
552 result += "cd .."
553 return result
554
555 def _cmd_build_custom(self) -> str:
556 return " && ".join(self.pkg_def.get("build_steps", []))
557
558 def _cmd_build_make(self) -> str:
559 return f"make -j{proc_count} && make install"
560
561 def _cmd_build_meson(self) -> str:
562 options = " ".join(self.pkg_def.get("config_flags", []))
563 env = " ".join(self.pkg_def.get("config_env", []))
564 result = f"{env} meson builddir {meson_flags} {options} && "
565 result += "ninja -C builddir && ninja -C builddir install"
566 return result
567
568
569class Docker:
570 """Class to assist with Docker interactions. All methods are static."""
571
572 @staticmethod
573 def timestamp() -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500574 """Generate a timestamp for today using the ISO week."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600575 today = date.today().isocalendar()
576 return f"{today[0]}-W{today[1]:02}"
577
578 @staticmethod
Patrick Williams41d86212022-11-25 18:28:43 -0600579 def tagname(pkgname: Optional[str], dockerfile: str) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500580 """Generate a tag name for a package using a hash of the Dockerfile."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600581 result = docker_image_name
582 if pkgname:
583 result += "-" + pkgname
584
585 result += ":" + Docker.timestamp()
586 result += "-" + sha256(dockerfile.encode()).hexdigest()[0:16]
587
588 return result
589
590 @staticmethod
591 def build(pkg: str, tag: str, dockerfile: str) -> None:
Andrew Geissler22e61102023-02-14 14:44:00 -0600592 """Build a docker image using the Dockerfile and tagging it with 'tag'."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600593
594 # If we're not forcing builds, check if it already exists and skip.
595 if not force_build:
596 if docker.image.ls(tag, "--format", '"{{.Repository}}:{{.Tag}}"'):
Patrick Williams05fb2a02022-10-11 17:22:33 -0500597 print(
598 f"Image {tag} already exists. Skipping.", file=sys.stderr
599 )
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600600 return
601
602 # Build it.
603 # Capture the output of the 'docker build' command and send it to
604 # stderr (prefixed with the package name). This allows us to see
605 # progress but not polute stdout. Later on we output the final
606 # docker tag to stdout and we want to keep that pristine.
607 #
608 # Other unusual flags:
609 # --no-cache: Bypass the Docker cache if 'force_build'.
610 # --force-rm: Clean up Docker processes if they fail.
611 docker.build(
612 proxy_args,
613 "--network=host",
614 "--force-rm",
615 "--no-cache=true" if force_build else "--no-cache=false",
616 "-t",
617 tag,
618 "-",
619 _in=dockerfile,
620 _out=(
621 lambda line: print(
622 pkg + ":", line, end="", file=sys.stderr, flush=True
623 )
624 ),
625 )
626
627
628# Read a bunch of environment variables.
Patrick Williams05fb2a02022-10-11 17:22:33 -0500629docker_image_name = os.environ.get(
630 "DOCKER_IMAGE_NAME", "openbmc/ubuntu-unit-test"
631)
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600632force_build = os.environ.get("FORCE_DOCKER_BUILD")
633is_automated_ci_build = os.environ.get("BUILD_URL", False)
Patrick Williams5e4d8402023-04-11 22:19:30 -0500634distro = os.environ.get("DISTRO", "ubuntu:lunar")
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600635branch = os.environ.get("BRANCH", "master")
636ubuntu_mirror = os.environ.get("UBUNTU_MIRROR")
637http_proxy = os.environ.get("http_proxy")
638
Patrick Williams65b21fb2021-02-12 21:21:14 -0600639gerrit_project = os.environ.get("GERRIT_PROJECT")
640gerrit_rev = os.environ.get("GERRIT_PATCHSET_REVISION")
641
Andrew Geisslerd0dabc32023-04-04 08:09:21 -0600642# Ensure appropriate docker build output to see progress and identify
643# any issues
644os.environ["BUILDKIT_PROGRESS"] = "plain"
645
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600646# Set up some common variables.
647username = os.environ.get("USER", "root")
648homedir = os.environ.get("HOME", "/root")
649gid = os.getgid()
650uid = os.getuid()
651
Josh Lehan6825a012022-03-17 18:31:39 -0700652# Use well-known constants if user is root
653if username == "root":
654 homedir = "/root"
655 gid = 0
656 uid = 0
657
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600658# Determine the architecture for Docker.
659arch = uname("-m").strip()
660if arch == "ppc64le":
661 docker_base = "ppc64le/"
662elif arch == "x86_64":
663 docker_base = ""
Thang Q. Nguyen051b05b2021-12-10 08:30:35 +0000664elif arch == "aarch64":
Thang Q. Nguyenf98f1a82021-12-22 01:59:19 +0000665 docker_base = "arm64v8/"
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600666else:
667 print(
668 f"Unsupported system architecture({arch}) found for docker image",
669 file=sys.stderr,
670 )
671 sys.exit(1)
672
Patrick Williams02871c92021-02-01 20:57:19 -0600673# Special flags if setting up a deb mirror.
674mirror = ""
675if "ubuntu" in distro and ubuntu_mirror:
676 mirror = f"""
Patrick Williamse08ffba2022-12-05 10:33:46 -0600677RUN echo "deb {ubuntu_mirror} \
678 $(. /etc/os-release && echo $VERSION_CODENAME) \
679 main restricted universe multiverse" > /etc/apt/sources.list && \\
680 echo "deb {ubuntu_mirror} \
681 $(. /etc/os-release && echo $VERSION_CODENAME)-updates \
682 main restricted universe multiverse" >> /etc/apt/sources.list && \\
683 echo "deb {ubuntu_mirror} \
684 $(. /etc/os-release && echo $VERSION_CODENAME)-security \
685 main restricted universe multiverse" >> /etc/apt/sources.list && \\
686 echo "deb {ubuntu_mirror} \
687 $(. /etc/os-release && echo $VERSION_CODENAME)-proposed \
688 main restricted universe multiverse" >> /etc/apt/sources.list && \\
689 echo "deb {ubuntu_mirror} \
690 $(. /etc/os-release && echo $VERSION_CODENAME)-backports \
691 main restricted universe multiverse" >> /etc/apt/sources.list
Patrick Williams02871c92021-02-01 20:57:19 -0600692"""
693
694# Special flags for proxying.
695proxy_cmd = ""
Adrian Ambrożewicz34ec77e2021-06-02 10:23:38 +0200696proxy_keyserver = ""
Patrick Williams02871c92021-02-01 20:57:19 -0600697proxy_args = []
698if http_proxy:
699 proxy_cmd = f"""
700RUN echo "[http]" >> {homedir}/.gitconfig && \
701 echo "proxy = {http_proxy}" >> {homedir}/.gitconfig
702"""
Adrian Ambrożewicz34ec77e2021-06-02 10:23:38 +0200703 proxy_keyserver = f"--keyserver-options http-proxy={http_proxy}"
704
Patrick Williams02871c92021-02-01 20:57:19 -0600705 proxy_args.extend(
706 [
707 "--build-arg",
708 f"http_proxy={http_proxy}",
709 "--build-arg",
Lei YUd461cd62021-02-18 14:25:49 +0800710 f"https_proxy={http_proxy}",
Patrick Williams02871c92021-02-01 20:57:19 -0600711 ]
712 )
713
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600714# Create base Dockerfile.
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600715dockerfile_base = f"""
716FROM {docker_base}{distro}
Patrick Williams02871c92021-02-01 20:57:19 -0600717
718{mirror}
719
720ENV DEBIAN_FRONTEND noninteractive
721
Patrick Williams8949d3c2022-04-27 16:41:27 -0500722ENV PYTHONPATH "/usr/local/lib/python3.10/site-packages/"
Patrick Williams02871c92021-02-01 20:57:19 -0600723
Patrick Williamsbb16ac12021-04-12 12:23:51 -0500724# Sometimes the ubuntu key expires and we need a way to force an execution
725# of the apt-get commands for the dbgsym-keyring. When this happens we see
726# an error like: "Release: The following signatures were invalid:"
727# Insert a bogus echo that we can change here when we get this error to force
728# the update.
729RUN echo "ubuntu keyserver rev as of 2021-04-21"
730
Patrick Williams02871c92021-02-01 20:57:19 -0600731# We need the keys to be imported for dbgsym repos
732# New releases have a package, older ones fall back to manual fetching
733# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
Jagpal Singh Gill575b5e42023-04-14 15:52:10 -0700734# Known issue with gpg to get keys via proxy -
735# https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/1788190, hence using
736# curl to get keys.
Patrick Williams50837432021-02-06 12:24:05 -0600737RUN apt-get update && apt-get dist-upgrade -yy && \
Patrick Williamsf79ce4c2021-04-30 16:00:49 -0500738 ( apt-get install gpgv ubuntu-dbgsym-keyring || \
Jagpal Singh Gill575b5e42023-04-14 15:52:10 -0700739 ( apt-get install -yy dirmngr curl && \
740 curl -sSL \
741 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xF2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622' \
742 | apt-key add - ))
Patrick Williams02871c92021-02-01 20:57:19 -0600743
744# Parse the current repo list into a debug repo list
Patrick Williamse08ffba2022-12-05 10:33:46 -0600745RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' \
746 /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
Patrick Williams02871c92021-02-01 20:57:19 -0600747
748# Remove non-existent debug repos
Patrick Williams41d86212022-11-25 18:28:43 -0600749RUN sed -i '/-\\(backports\\|security\\) /d' /etc/apt/sources.list.d/debug.list
Patrick Williams02871c92021-02-01 20:57:19 -0600750
751RUN cat /etc/apt/sources.list.d/debug.list
752
753RUN apt-get update && apt-get dist-upgrade -yy && apt-get install -yy \
Andrew Jeffery58f19152023-05-22 16:41:32 +0930754 abi-compliance-checker \
Andrew Jeffery8b112062023-05-22 20:49:11 +0930755 abi-dumper \
Patrick Williams02871c92021-02-01 20:57:19 -0600756 autoconf \
757 autoconf-archive \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600758 bison \
Patrick Williams64b6f9d2023-04-13 12:41:28 -0500759 clang-16 \
760 clang-format-16 \
761 clang-tidy-16 \
762 clang-tools-16 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600763 cmake \
764 curl \
765 dbus \
766 device-tree-compiler \
767 flex \
Patrick Williams961f1482023-05-30 09:24:16 -0500768 g++-13 \
769 gcc-13 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600770 git \
Patrick Williams02871c92021-02-01 20:57:19 -0600771 iproute2 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600772 iputils-ping \
Manojkiran Eda524a3312023-04-05 15:37:47 +0530773 libaudit-dev \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600774 libc6-dbg \
775 libc6-dev \
776 libconfig++-dev \
777 libcryptsetup-dev \
778 libdbus-1-dev \
779 libevdev-dev \
780 libgpiod-dev \
781 libi2c-dev \
782 libjpeg-dev \
783 libjson-perl \
784 libldap2-dev \
785 libmimetic-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600786 libnl-3-dev \
787 libnl-genl-3-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600788 libpam0g-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600789 libpciaccess-dev \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600790 libperlio-gzip-perl \
791 libpng-dev \
792 libprotobuf-dev \
793 libsnmp-dev \
794 libssl-dev \
795 libsystemd-dev \
796 libtool \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600797 liburing-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600798 libxml2-utils \
Patrick Williams0eedeed2021-02-06 19:06:09 -0600799 libxml-simple-perl \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600800 ninja-build \
801 npm \
802 pkg-config \
803 protobuf-compiler \
804 python3 \
805 python3-dev\
806 python3-git \
807 python3-mako \
808 python3-pip \
809 python3-setuptools \
810 python3-socks \
811 python3-yaml \
John Wedig9adf68d2021-11-16 14:00:39 -0800812 rsync \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600813 shellcheck \
814 sudo \
815 systemd \
816 valgrind \
817 valgrind-dbg \
Andrew Geisslerb565f822022-12-14 11:43:25 -0600818 vim \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600819 wget \
820 xxd
Patrick Williams02871c92021-02-01 20:57:19 -0600821
Patrick Williams961f1482023-05-30 09:24:16 -0500822RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 \
823 --slave /usr/bin/g++ g++ /usr/bin/g++-13 \
824 --slave /usr/bin/gcov gcov /usr/bin/gcov-13 \
825 --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-13 \
826 --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-13
827RUN update-alternatives --remove cpp /usr/bin/cpp && \
828 update-alternatives --install /usr/bin/cpp cpp /usr/bin/cpp-13 13
Patrick Williams02871c92021-02-01 20:57:19 -0600829
Patrick Williams64b6f9d2023-04-13 12:41:28 -0500830RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-16 1000 \
831 --slave /usr/bin/clang++ clang++ /usr/bin/clang++-16 \
832 --slave /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-16 \
833 --slave /usr/bin/clang-format clang-format /usr/bin/clang-format-16 \
Patrick Williamse08ffba2022-12-05 10:33:46 -0600834 --slave /usr/bin/run-clang-tidy run-clang-tidy.py \
Patrick Williams64b6f9d2023-04-13 12:41:28 -0500835 /usr/bin/run-clang-tidy-16 \
836 --slave /usr/bin/scan-build scan-build /usr/bin/scan-build-16
Patrick Williams02871c92021-02-01 20:57:19 -0600837
Patrick Williams50837432021-02-06 12:24:05 -0600838"""
839
840if is_automated_ci_build:
841 dockerfile_base += f"""
842# Run an arbitrary command to polute the docker cache regularly force us
843# to re-run `apt-get update` daily.
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600844RUN echo {Docker.timestamp()}
Patrick Williams50837432021-02-06 12:24:05 -0600845RUN apt-get update && apt-get dist-upgrade -yy
846
847"""
848
Patrick Williams41d86212022-11-25 18:28:43 -0600849dockerfile_base += """
Patrick Williams5e4d8402023-04-11 22:19:30 -0500850RUN pip3 install --break-system-packages \
Patrick Williams818023d2023-04-10 13:07:15 -0500851 beautysh \
852 black \
853 codespell \
854 flake8 \
855 gitlint \
856 inflection \
857 isort \
858 jsonschema \
Patrick Williams0044f692023-04-10 13:08:38 -0500859 meson==1.0.1 \
Patrick Williams818023d2023-04-10 13:07:15 -0500860 protobuf \
861 requests
Patrick Williamsb08ddf72022-12-06 08:56:31 -0600862
863RUN npm install -g \
864 eslint@latest eslint-plugin-json@latest \
Patrick Williams7d41f6d2022-12-06 10:19:43 -0600865 markdownlint-cli@latest \
Patrick Williamsb08ddf72022-12-06 08:56:31 -0600866 prettier@latest
Ed Tanousfb9948a2022-06-21 09:10:24 -0700867"""
868
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600869# Build the base and stage docker images.
870docker_base_img_name = Docker.tagname("base", dockerfile_base)
871Docker.build("base", docker_base_img_name, dockerfile_base)
872Package.generate_all()
Patrick Williams02871c92021-02-01 20:57:19 -0600873
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600874# Create the final Dockerfile.
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600875dockerfile = f"""
Patrick Williams02871c92021-02-01 20:57:19 -0600876# Build the final output image
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600877FROM {docker_base_img_name}
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600878{Package.df_all_copycmds()}
Patrick Williams02871c92021-02-01 20:57:19 -0600879
880# Some of our infrastructure still relies on the presence of this file
881# even though it is no longer needed to rebuild the docker environment
882# NOTE: The file is sorted to ensure the ordering is stable.
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600883RUN echo '{Package.depcache()}' > /tmp/depcache
Patrick Williams02871c92021-02-01 20:57:19 -0600884
Patrick Williams67cc0612023-04-11 22:16:46 -0500885# Ensure the group, user, and home directory are created (or rename them if
886# they already exist).
887RUN if grep -q ":{gid}:" /etc/group ; then \
888 groupmod -n {username} $(awk -F : '{{ if ($3 == {gid}) {{ print $1 }} }}' /etc/group) ; \
889 else \
890 groupadd -f -g {gid} {username} ; \
891 fi
Patrick Williams02871c92021-02-01 20:57:19 -0600892RUN mkdir -p "{os.path.dirname(homedir)}"
Patrick Williams67cc0612023-04-11 22:16:46 -0500893RUN if grep -q ":{uid}:" /etc/passwd ; then \
Patrick Williams73b3ee92023-04-24 10:11:01 -0500894 usermod -l {username} -d {homedir} -m $(awk -F : '{{ if ($3 == {uid}) {{ print $1 }} }}' /etc/passwd) ; \
Patrick Williams67cc0612023-04-11 22:16:46 -0500895 else \
896 useradd -d {homedir} -m -u {uid} -g {gid} {username} ; \
897 fi
Patrick Williams02871c92021-02-01 20:57:19 -0600898RUN sed -i '1iDefaults umask=000' /etc/sudoers
899RUN echo "{username} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
900
Andrew Geissler305a9a52021-04-07 11:08:40 -0500901# Ensure user has ability to write to /usr/local for different tool
902# and data installs
Andrew Geissler7bb00b12021-05-10 15:12:08 -0500903RUN chown -R {username}:{username} /usr/local/share
Andrew Geissler305a9a52021-04-07 11:08:40 -0500904
Patrick Williams02871c92021-02-01 20:57:19 -0600905{proxy_cmd}
906
907RUN /bin/bash
908"""
909
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600910# Do the final docker build
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600911docker_final_img_name = Docker.tagname(None, dockerfile)
912Docker.build("final", docker_final_img_name, dockerfile)
913
Patrick Williams00536fb2021-02-11 14:28:49 -0600914# Print the tag of the final image.
915print(docker_final_img_name)