blob: 7bc11574183b182a03dbdaa9dd5a4cdd82d7dad4 [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(
Andrew Geissler05806f52024-01-07 08:39:29 -060083 rev="1.84.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060084 url=(
Andrew Geissler38b46872024-01-07 07:20:27 -060085 lambda pkg, rev: f"https://github.com/boostorg/{pkg}/releases/download/{pkg}-{rev}/{pkg}-{rev}.tar.gz"
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 (
Andrew Geissler38b46872024-01-07 07:20:27 -060090 "./bootstrap.sh"
Ed Tanous42ff4322023-10-04 17:39:08 -070091 f" --prefix={prefix} --with-libraries=context,coroutine,url"
Patrick Williamse08ffba2022-12-05 10:33:46 -060092 ),
Patrick Williamsaae36d12021-02-04 16:30:04 -060093 "./b2",
94 f"./b2 install --prefix={prefix}",
95 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060096 ),
97 "USCiLab/cereal": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -050098 rev="v1.3.2",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -060099 build_type="custom",
100 build_steps=[f"cp -a include/cereal/ {prefix}/include/"],
101 ),
Ed Tanousc7198552022-07-01 08:15:50 -0700102 "danmar/cppcheck": PackageDef(
Patrick Williams51021782023-12-05 19:10:44 -0600103 rev="2.12.1",
Ed Tanousc7198552022-07-01 08:15:50 -0700104 build_type="cmake",
105 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600106 "CLIUtils/CLI11": PackageDef(
Patrick Williamsfc397332023-07-17 11:35:43 -0500107 rev="v2.3.2",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600108 build_type="cmake",
109 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600110 "-DBUILD_TESTING=OFF",
111 "-DCLI11_BUILD_DOCS=OFF",
112 "-DCLI11_BUILD_EXAMPLES=OFF",
113 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600114 ),
115 "fmtlib/fmt": PackageDef(
Patrick Williamsc061e072023-12-05 19:11:21 -0600116 rev="10.1.1",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600117 build_type="cmake",
118 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600119 "-DFMT_DOC=OFF",
120 "-DFMT_TEST=OFF",
121 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600122 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600123 "Naios/function2": PackageDef(
Patrick Williamscb099742023-12-05 19:12:09 -0600124 rev="4.2.4",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600125 build_type="custom",
126 build_steps=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600127 f"mkdir {prefix}/include/function2",
128 f"cp include/function2/function2.hpp {prefix}/include/function2/",
129 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600130 ),
131 "google/googletest": PackageDef(
Patrick Williamsfdf243b2023-12-05 19:13:50 -0600132 rev="v1.14.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600133 build_type="cmake",
William A. Kennington III4dd32c02021-05-28 01:58:13 -0700134 config_env=["CXXFLAGS=-std=c++20"],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600135 config_flags=["-DTHREADS_PREFER_PTHREAD_FLAG=ON"],
136 ),
Ed Tanous178b4b22023-06-15 09:03:11 -0700137 "nghttp2/nghttp2": PackageDef(
Ed Tanousabb106a2024-04-04 10:00:02 -0700138 rev="v1.61.0",
Ed Tanous178b4b22023-06-15 09:03:11 -0700139 build_type="cmake",
140 config_env=["CXXFLAGS=-std=c++20"],
141 config_flags=[
142 "-DENABLE_LIB_ONLY=ON",
143 "-DENABLE_STATIC_LIB=ON",
144 ],
145 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600146 "nlohmann/json": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500147 rev="v3.11.2",
Patrick Williams6bce2ca2021-02-12 21:13:37 -0600148 build_type="cmake",
149 config_flags=["-DJSON_BuildTests=OFF"],
150 custom_post_install=[
Patrick Williamse08ffba2022-12-05 10:33:46 -0600151 (
152 f"ln -s {prefix}/include/nlohmann/json.hpp"
153 f" {prefix}/include/json.hpp"
154 ),
Patrick Williamsaae36d12021-02-04 16:30:04 -0600155 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600156 ),
Przemyslaw Czarnowski058e3a32022-12-21 14:13:23 +0100157 "json-c/json-c": PackageDef(
Patrick Williamseee65be2023-12-05 19:17:01 -0600158 rev="json-c-0.17-20230812",
Przemyslaw Czarnowski058e3a32022-12-21 14:13:23 +0100159 build_type="cmake",
160 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600161 "linux-test-project/lcov": PackageDef(
Patrick Williamsf01a7242023-12-05 19:17:53 -0600162 rev="v1.16",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600163 build_type="make",
164 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600165 "LibVNC/libvncserver": PackageDef(
Patrick Williamsc0421322023-12-05 19:18:57 -0600166 rev="LibVNCServer-0.9.14",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600167 build_type="cmake",
168 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600169 "leethomason/tinyxml2": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500170 rev="9.0.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600171 build_type="cmake",
172 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600173 "tristanpenman/valijson": PackageDef(
Patrick Williams5a2c1132023-12-05 19:20:36 -0600174 rev="v1.0.1",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600175 build_type="cmake",
176 config_flags=[
Patrick Williams0eedeed2021-02-06 19:06:09 -0600177 "-Dvalijson_BUILD_TESTS=0",
178 "-Dvalijson_INSTALL_HEADERS=1",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600179 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600180 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600181 "open-power/pdbg": PackageDef(build_type="autoconf"),
182 "openbmc/gpioplus": PackageDef(
183 depends=["openbmc/stdplus"],
184 build_type="meson",
185 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600186 "-Dexamples=false",
187 "-Dtests=disabled",
188 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600189 ),
190 "openbmc/phosphor-dbus-interfaces": PackageDef(
191 depends=["openbmc/sdbusplus"],
192 build_type="meson",
William A. Kennington III4fe87772022-02-11 15:44:29 -0800193 config_flags=["-Dgenerate_md=false"],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600194 ),
195 "openbmc/phosphor-logging": PackageDef(
196 depends=[
Patrick Williams83394612021-02-03 07:12:50 -0600197 "USCiLab/cereal",
Patrick Williams83394612021-02-03 07:12:50 -0600198 "openbmc/phosphor-dbus-interfaces",
199 "openbmc/sdbusplus",
200 "openbmc/sdeventplus",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600201 ],
Patrick Williamsf79ce4c2021-04-30 16:00:49 -0500202 build_type="meson",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600203 config_flags=[
William A. Kennington III6c98f282022-10-05 13:37:04 -0700204 "-Dlibonly=true",
205 "-Dtests=disabled",
Patrick Williams5eabdae2022-04-14 14:34:34 -0500206 f"-Dyamldir={prefix}/share/phosphor-dbus-yaml/yaml",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600207 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600208 ),
209 "openbmc/phosphor-objmgr": PackageDef(
210 depends=[
Brad Bishop11e57622022-09-14 16:10:25 -0400211 "CLIUtils/CLI11",
Patrick Williams70af95c2022-09-27 16:55:41 -0500212 "boost",
Patrick Williams83394612021-02-03 07:12:50 -0600213 "leethomason/tinyxml2",
Patrick Williams70af95c2022-09-27 16:55:41 -0500214 "openbmc/phosphor-dbus-interfaces",
Patrick Williams83394612021-02-03 07:12:50 -0600215 "openbmc/phosphor-logging",
216 "openbmc/sdbusplus",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600217 ],
Brad Bishop1197e352021-08-03 19:25:46 -0400218 build_type="meson",
219 config_flags=[
220 "-Dtests=disabled",
221 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600222 ),
Jason M. Billsc02ff272023-08-02 10:55:22 -0700223 "openbmc/libpeci": PackageDef(
224 build_type="meson",
225 config_flags=[
226 "-Draw-peci=disabled",
227 ],
228 ),
Manojkiran Eda1c19e452022-10-03 11:01:59 +0530229 "openbmc/libpldm": PackageDef(
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600230 build_type="meson",
231 config_flags=[
Andrew Jeffery29d69bb2023-06-06 14:38:24 +0930232 "-Dabi=deprecated,stable",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600233 "-Doem-ibm=enabled",
234 "-Dtests=disabled",
235 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600236 ),
237 "openbmc/sdbusplus": PackageDef(
238 build_type="meson",
239 custom_post_dl=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600240 "cd tools",
241 f"./setup.py install --root=/ --prefix={prefix}",
242 "cd ..",
243 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600244 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600245 "-Dexamples=disabled",
246 "-Dtests=disabled",
247 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600248 ),
249 "openbmc/sdeventplus": PackageDef(
Patrick Williams70af95c2022-09-27 16:55:41 -0500250 depends=[
251 "Naios/function2",
252 "openbmc/stdplus",
253 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600254 build_type="meson",
255 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600256 "-Dexamples=false",
257 "-Dtests=disabled",
258 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600259 ),
260 "openbmc/stdplus": PackageDef(
Patrick Williams70af95c2022-09-27 16:55:41 -0500261 depends=[
Patrick Williams70af95c2022-09-27 16:55:41 -0500262 "fmtlib/fmt",
William A. Kennington IIIca1bf0c2022-10-05 02:23:30 -0700263 "google/googletest",
264 "Naios/function2",
Patrick Williams70af95c2022-09-27 16:55:41 -0500265 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600266 build_type="meson",
267 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600268 "-Dexamples=false",
269 "-Dtests=disabled",
William A. Kennington IIIca1bf0c2022-10-05 02:23:30 -0700270 "-Dgtest=enabled",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600271 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600272 ),
273} # type: Dict[str, PackageDef]
Patrick Williams02871c92021-02-01 20:57:19 -0600274
275# Define common flags used for builds
Patrick Williams02871c92021-02-01 20:57:19 -0600276configure_flags = " ".join(
277 [
278 f"--prefix={prefix}",
279 ]
280)
281cmake_flags = " ".join(
282 [
Patrick Williams02871c92021-02-01 20:57:19 -0600283 "-DBUILD_SHARED_LIBS=ON",
Patrick Williams0f2086b2021-02-05 06:49:49 -0600284 "-DCMAKE_BUILD_TYPE=RelWithDebInfo",
Patrick Williams02871c92021-02-01 20:57:19 -0600285 f"-DCMAKE_INSTALL_PREFIX:PATH={prefix}",
Patrick Williams0f2086b2021-02-05 06:49:49 -0600286 "-GNinja",
287 "-DCMAKE_MAKE_PROGRAM=ninja",
Patrick Williams02871c92021-02-01 20:57:19 -0600288 ]
289)
290meson_flags = " ".join(
291 [
292 "--wrap-mode=nodownload",
293 f"-Dprefix={prefix}",
294 ]
295)
296
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600297
298class Package(threading.Thread):
299 """Class used to build the Docker stages for each package.
300
301 Generally, this class should not be instantiated directly but through
302 Package.generate_all().
303 """
304
305 # Copy the packages dictionary.
306 packages = packages.copy()
307
308 # Lock used for thread-safety.
309 lock = threading.Lock()
310
311 def __init__(self, pkg: str):
Patrick Williams05fb2a02022-10-11 17:22:33 -0500312 """pkg - The name of this package (ex. foo/bar )"""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600313 super(Package, self).__init__()
314
315 self.package = pkg
316 self.exception = None # type: Optional[Exception]
317
318 # Reference to this package's
319 self.pkg_def = Package.packages[pkg]
320 self.pkg_def["__package"] = self
321
322 def run(self) -> None:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500323 """Thread 'run' function. Builds the Docker stage."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600324
325 # In case this package has no rev, fetch it from Github.
326 self._update_rev()
327
328 # Find all the Package objects that this package depends on.
329 # This section is locked because we are looking into another
330 # package's PackageDef dict, which could be being modified.
331 Package.lock.acquire()
332 deps: Iterable[Package] = [
333 Package.packages[deppkg]["__package"]
334 for deppkg in self.pkg_def.get("depends", [])
335 ]
336 Package.lock.release()
337
338 # Wait until all the depends finish building. We need them complete
339 # for the "COPY" commands.
340 for deppkg in deps:
341 deppkg.join()
342
343 # Generate this package's Dockerfile.
344 dockerfile = f"""
345FROM {docker_base_img_name}
346{self._df_copycmds()}
347{self._df_build()}
348"""
349
350 # Generate the resulting tag name and save it to the PackageDef.
351 # This section is locked because we are modifying the PackageDef,
352 # which can be accessed by other threads.
353 Package.lock.acquire()
354 tag = Docker.tagname(self._stagename(), dockerfile)
355 self.pkg_def["__tag"] = tag
356 Package.lock.release()
357
358 # Do the build / save any exceptions.
359 try:
360 Docker.build(self.package, tag, dockerfile)
361 except Exception as e:
362 self.exception = e
363
364 @classmethod
365 def generate_all(cls) -> None:
366 """Ensure a Docker stage is created for all defined packages.
367
368 These are done in parallel but with appropriate blocking per
369 package 'depends' specifications.
370 """
371
372 # Create a Package for each defined package.
373 pkg_threads = [Package(p) for p in cls.packages.keys()]
374
375 # Start building them all.
Patrick Williams6dbd7802021-02-20 08:34:10 -0600376 # This section is locked because threads depend on each other,
377 # based on the packages, and they cannot 'join' on a thread
378 # which is not yet started. Adding a lock here allows all the
379 # threads to start before they 'join' their dependencies.
380 Package.lock.acquire()
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600381 for t in pkg_threads:
382 t.start()
Patrick Williams6dbd7802021-02-20 08:34:10 -0600383 Package.lock.release()
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600384
385 # Wait for completion.
386 for t in pkg_threads:
387 t.join()
388 # Check if the thread saved off its own exception.
389 if t.exception:
390 print(f"Package {t.package} failed!", file=sys.stderr)
391 raise t.exception
392
393 @staticmethod
394 def df_all_copycmds() -> str:
395 """Formulate the Dockerfile snippet necessary to copy all packages
396 into the final image.
397 """
398 return Package.df_copycmds_set(Package.packages.keys())
399
400 @classmethod
401 def depcache(cls) -> str:
402 """Create the contents of the '/tmp/depcache'.
403 This file is a comma-separated list of "<pkg>:<rev>".
404 """
405
406 # This needs to be sorted for consistency.
407 depcache = ""
408 for pkg in sorted(cls.packages.keys()):
409 depcache += "%s:%s," % (pkg, cls.packages[pkg]["rev"])
410 return depcache
411
412 def _update_rev(self) -> None:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500413 """Look up the HEAD for missing a static rev."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600414
415 if "rev" in self.pkg_def:
416 return
417
Patrick Williams65b21fb2021-02-12 21:21:14 -0600418 # Check if Jenkins/Gerrit gave us a revision and use it.
419 if gerrit_project == self.package and gerrit_rev:
420 print(
421 f"Found Gerrit revision for {self.package}: {gerrit_rev}",
422 file=sys.stderr,
423 )
424 self.pkg_def["rev"] = gerrit_rev
425 return
426
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600427 # Ask Github for all the branches.
Patrick Williams05fb2a02022-10-11 17:22:33 -0500428 lookup = git(
429 "ls-remote", "--heads", f"https://github.com/{self.package}"
430 )
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600431
432 # Find the branch matching {branch} (or fallback to master).
433 # This section is locked because we are modifying the PackageDef.
434 Package.lock.acquire()
435 for line in lookup.split("\n"):
436 if f"refs/heads/{branch}" in line:
437 self.pkg_def["rev"] = line.split()[0]
Patrick Williamsc7d73642022-10-11 17:22:06 -0500438 elif (
439 "refs/heads/master" in line or "refs/heads/main" in line
440 ) and "rev" not in self.pkg_def:
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600441 self.pkg_def["rev"] = line.split()[0]
442 Package.lock.release()
443
444 def _stagename(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500445 """Create a name for the Docker stage associated with this pkg."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600446 return self.package.replace("/", "-").lower()
447
448 def _url(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500449 """Get the URL for this package."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600450 rev = self.pkg_def["rev"]
451
452 # If the lambda exists, call it.
453 if "url" in self.pkg_def:
454 return self.pkg_def["url"](self.package, rev)
455
456 # Default to the github archive URL.
457 return f"https://github.com/{self.package}/archive/{rev}.tar.gz"
458
459 def _cmd_download(self) -> str:
460 """Formulate the command necessary to download and unpack to source."""
461
462 url = self._url()
463 if ".tar." not in url:
464 raise NotImplementedError(
465 f"Unhandled download type for {self.package}: {url}"
466 )
467
468 cmd = f"curl -L {url} | tar -x"
469
470 if url.endswith(".bz2"):
471 cmd += "j"
472 elif url.endswith(".gz"):
473 cmd += "z"
474 else:
475 raise NotImplementedError(
476 f"Unknown tar flags needed for {self.package}: {url}"
477 )
478
479 return cmd
480
481 def _cmd_cd_srcdir(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500482 """Formulate the command necessary to 'cd' into the source dir."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600483 return f"cd {self.package.split('/')[-1]}*"
484
485 def _df_copycmds(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500486 """Formulate the dockerfile snippet necessary to COPY all depends."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600487
488 if "depends" not in self.pkg_def:
489 return ""
490 return Package.df_copycmds_set(self.pkg_def["depends"])
491
492 @staticmethod
493 def df_copycmds_set(pkgs: Iterable[str]) -> str:
494 """Formulate the Dockerfile snippet necessary to COPY a set of
495 packages into a Docker stage.
496 """
497
498 copy_cmds = ""
499
500 # Sort the packages for consistency.
501 for p in sorted(pkgs):
502 tag = Package.packages[p]["__tag"]
503 copy_cmds += f"COPY --from={tag} {prefix} {prefix}\n"
504 # Workaround for upstream docker bug and multiple COPY cmds
505 # https://github.com/moby/moby/issues/37965
506 copy_cmds += "RUN true\n"
507
508 return copy_cmds
509
510 def _df_build(self) -> str:
511 """Formulate the Dockerfile snippet necessary to download, build, and
512 install a package into a Docker stage.
513 """
514
515 # Download and extract source.
516 result = f"RUN {self._cmd_download()} && {self._cmd_cd_srcdir()} && "
517
518 # Handle 'custom_post_dl' commands.
519 custom_post_dl = self.pkg_def.get("custom_post_dl")
520 if custom_post_dl:
521 result += " && ".join(custom_post_dl) + " && "
522
523 # Build and install package based on 'build_type'.
524 build_type = self.pkg_def["build_type"]
525 if build_type == "autoconf":
526 result += self._cmd_build_autoconf()
527 elif build_type == "cmake":
528 result += self._cmd_build_cmake()
529 elif build_type == "custom":
530 result += self._cmd_build_custom()
531 elif build_type == "make":
532 result += self._cmd_build_make()
533 elif build_type == "meson":
534 result += self._cmd_build_meson()
535 else:
536 raise NotImplementedError(
537 f"Unhandled build type for {self.package}: {build_type}"
538 )
539
Patrick Williams6bce2ca2021-02-12 21:13:37 -0600540 # Handle 'custom_post_install' commands.
541 custom_post_install = self.pkg_def.get("custom_post_install")
542 if custom_post_install:
543 result += " && " + " && ".join(custom_post_install)
544
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600545 return result
546
547 def _cmd_build_autoconf(self) -> str:
548 options = " ".join(self.pkg_def.get("config_flags", []))
549 env = " ".join(self.pkg_def.get("config_env", []))
550 result = "./bootstrap.sh && "
551 result += f"{env} ./configure {configure_flags} {options} && "
552 result += f"make -j{proc_count} && make install"
553 return result
554
555 def _cmd_build_cmake(self) -> str:
556 options = " ".join(self.pkg_def.get("config_flags", []))
557 env = " ".join(self.pkg_def.get("config_env", []))
558 result = "mkdir builddir && cd builddir && "
559 result += f"{env} cmake {cmake_flags} {options} .. && "
560 result += "cmake --build . --target all && "
561 result += "cmake --build . --target install && "
562 result += "cd .."
563 return result
564
565 def _cmd_build_custom(self) -> str:
566 return " && ".join(self.pkg_def.get("build_steps", []))
567
568 def _cmd_build_make(self) -> str:
569 return f"make -j{proc_count} && make install"
570
571 def _cmd_build_meson(self) -> str:
572 options = " ".join(self.pkg_def.get("config_flags", []))
573 env = " ".join(self.pkg_def.get("config_env", []))
Andrew Jefferye2da11a2023-06-15 10:16:37 +0930574 result = f"{env} meson setup builddir {meson_flags} {options} && "
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600575 result += "ninja -C builddir && ninja -C builddir install"
576 return result
577
578
579class Docker:
580 """Class to assist with Docker interactions. All methods are static."""
581
582 @staticmethod
583 def timestamp() -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500584 """Generate a timestamp for today using the ISO week."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600585 today = date.today().isocalendar()
586 return f"{today[0]}-W{today[1]:02}"
587
588 @staticmethod
Patrick Williams41d86212022-11-25 18:28:43 -0600589 def tagname(pkgname: Optional[str], dockerfile: str) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500590 """Generate a tag name for a package using a hash of the Dockerfile."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600591 result = docker_image_name
592 if pkgname:
593 result += "-" + pkgname
594
595 result += ":" + Docker.timestamp()
596 result += "-" + sha256(dockerfile.encode()).hexdigest()[0:16]
597
598 return result
599
600 @staticmethod
601 def build(pkg: str, tag: str, dockerfile: str) -> None:
Andrew Geissler22e61102023-02-14 14:44:00 -0600602 """Build a docker image using the Dockerfile and tagging it with 'tag'."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600603
604 # If we're not forcing builds, check if it already exists and skip.
605 if not force_build:
606 if docker.image.ls(tag, "--format", '"{{.Repository}}:{{.Tag}}"'):
Patrick Williams05fb2a02022-10-11 17:22:33 -0500607 print(
608 f"Image {tag} already exists. Skipping.", file=sys.stderr
609 )
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600610 return
611
612 # Build it.
613 # Capture the output of the 'docker build' command and send it to
614 # stderr (prefixed with the package name). This allows us to see
615 # progress but not polute stdout. Later on we output the final
616 # docker tag to stdout and we want to keep that pristine.
617 #
618 # Other unusual flags:
619 # --no-cache: Bypass the Docker cache if 'force_build'.
620 # --force-rm: Clean up Docker processes if they fail.
621 docker.build(
622 proxy_args,
623 "--network=host",
624 "--force-rm",
625 "--no-cache=true" if force_build else "--no-cache=false",
626 "-t",
627 tag,
628 "-",
629 _in=dockerfile,
630 _out=(
631 lambda line: print(
632 pkg + ":", line, end="", file=sys.stderr, flush=True
633 )
634 ),
Jonathan Doman88dd7922024-05-02 10:34:21 -0700635 _err_to_out=True,
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600636 )
637
638
639# Read a bunch of environment variables.
Patrick Williams05fb2a02022-10-11 17:22:33 -0500640docker_image_name = os.environ.get(
641 "DOCKER_IMAGE_NAME", "openbmc/ubuntu-unit-test"
642)
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600643force_build = os.environ.get("FORCE_DOCKER_BUILD")
644is_automated_ci_build = os.environ.get("BUILD_URL", False)
Patrick Williams7c95a372024-01-05 19:22:58 -0600645distro = os.environ.get("DISTRO", "ubuntu:noble")
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600646branch = os.environ.get("BRANCH", "master")
647ubuntu_mirror = os.environ.get("UBUNTU_MIRROR")
648http_proxy = os.environ.get("http_proxy")
649
Patrick Williams65b21fb2021-02-12 21:21:14 -0600650gerrit_project = os.environ.get("GERRIT_PROJECT")
651gerrit_rev = os.environ.get("GERRIT_PATCHSET_REVISION")
652
Andrew Geisslerd0dabc32023-04-04 08:09:21 -0600653# Ensure appropriate docker build output to see progress and identify
654# any issues
655os.environ["BUILDKIT_PROGRESS"] = "plain"
656
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600657# Set up some common variables.
658username = os.environ.get("USER", "root")
659homedir = os.environ.get("HOME", "/root")
660gid = os.getgid()
661uid = os.getuid()
662
Josh Lehan6825a012022-03-17 18:31:39 -0700663# Use well-known constants if user is root
664if username == "root":
665 homedir = "/root"
666 gid = 0
667 uid = 0
668
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600669# Determine the architecture for Docker.
670arch = uname("-m").strip()
671if arch == "ppc64le":
672 docker_base = "ppc64le/"
673elif arch == "x86_64":
674 docker_base = ""
Thang Q. Nguyen051b05b2021-12-10 08:30:35 +0000675elif arch == "aarch64":
Thang Q. Nguyenf98f1a82021-12-22 01:59:19 +0000676 docker_base = "arm64v8/"
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600677else:
678 print(
679 f"Unsupported system architecture({arch}) found for docker image",
680 file=sys.stderr,
681 )
682 sys.exit(1)
683
Patrick Williams02871c92021-02-01 20:57:19 -0600684# Special flags if setting up a deb mirror.
685mirror = ""
686if "ubuntu" in distro and ubuntu_mirror:
687 mirror = f"""
Patrick Williamse08ffba2022-12-05 10:33:46 -0600688RUN echo "deb {ubuntu_mirror} \
689 $(. /etc/os-release && echo $VERSION_CODENAME) \
690 main restricted universe multiverse" > /etc/apt/sources.list && \\
691 echo "deb {ubuntu_mirror} \
692 $(. /etc/os-release && echo $VERSION_CODENAME)-updates \
693 main restricted universe multiverse" >> /etc/apt/sources.list && \\
694 echo "deb {ubuntu_mirror} \
695 $(. /etc/os-release && echo $VERSION_CODENAME)-security \
696 main restricted universe multiverse" >> /etc/apt/sources.list && \\
697 echo "deb {ubuntu_mirror} \
698 $(. /etc/os-release && echo $VERSION_CODENAME)-proposed \
699 main restricted universe multiverse" >> /etc/apt/sources.list && \\
700 echo "deb {ubuntu_mirror} \
701 $(. /etc/os-release && echo $VERSION_CODENAME)-backports \
702 main restricted universe multiverse" >> /etc/apt/sources.list
Patrick Williams02871c92021-02-01 20:57:19 -0600703"""
704
705# Special flags for proxying.
706proxy_cmd = ""
Adrian Ambrożewicz34ec77e2021-06-02 10:23:38 +0200707proxy_keyserver = ""
Patrick Williams02871c92021-02-01 20:57:19 -0600708proxy_args = []
709if http_proxy:
710 proxy_cmd = f"""
711RUN echo "[http]" >> {homedir}/.gitconfig && \
712 echo "proxy = {http_proxy}" >> {homedir}/.gitconfig
713"""
Adrian Ambrożewicz34ec77e2021-06-02 10:23:38 +0200714 proxy_keyserver = f"--keyserver-options http-proxy={http_proxy}"
715
Patrick Williams02871c92021-02-01 20:57:19 -0600716 proxy_args.extend(
717 [
718 "--build-arg",
719 f"http_proxy={http_proxy}",
720 "--build-arg",
Lei YUd461cd62021-02-18 14:25:49 +0800721 f"https_proxy={http_proxy}",
Patrick Williams02871c92021-02-01 20:57:19 -0600722 ]
723 )
724
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600725# Create base Dockerfile.
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600726dockerfile_base = f"""
727FROM {docker_base}{distro}
Patrick Williams02871c92021-02-01 20:57:19 -0600728
729{mirror}
730
731ENV DEBIAN_FRONTEND noninteractive
732
Patrick Williams8949d3c2022-04-27 16:41:27 -0500733ENV PYTHONPATH "/usr/local/lib/python3.10/site-packages/"
Patrick Williams02871c92021-02-01 20:57:19 -0600734
Patrick Williamsbb16ac12021-04-12 12:23:51 -0500735# Sometimes the ubuntu key expires and we need a way to force an execution
736# of the apt-get commands for the dbgsym-keyring. When this happens we see
737# an error like: "Release: The following signatures were invalid:"
738# Insert a bogus echo that we can change here when we get this error to force
739# the update.
740RUN echo "ubuntu keyserver rev as of 2021-04-21"
741
Patrick Williams02871c92021-02-01 20:57:19 -0600742# We need the keys to be imported for dbgsym repos
743# New releases have a package, older ones fall back to manual fetching
744# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
Jagpal Singh Gill575b5e42023-04-14 15:52:10 -0700745# Known issue with gpg to get keys via proxy -
746# https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/1788190, hence using
747# curl to get keys.
Patrick Williams50837432021-02-06 12:24:05 -0600748RUN apt-get update && apt-get dist-upgrade -yy && \
Jian Zhang938d3032023-07-05 13:35:35 +0800749 ( apt-get install -yy gpgv ubuntu-dbgsym-keyring || \
Jagpal Singh Gill575b5e42023-04-14 15:52:10 -0700750 ( apt-get install -yy dirmngr curl && \
751 curl -sSL \
752 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xF2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622' \
753 | apt-key add - ))
Patrick Williams02871c92021-02-01 20:57:19 -0600754
755# Parse the current repo list into a debug repo list
Patrick Williamse08ffba2022-12-05 10:33:46 -0600756RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' \
757 /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
Patrick Williams02871c92021-02-01 20:57:19 -0600758
759# Remove non-existent debug repos
Patrick Williams41d86212022-11-25 18:28:43 -0600760RUN sed -i '/-\\(backports\\|security\\) /d' /etc/apt/sources.list.d/debug.list
Patrick Williams02871c92021-02-01 20:57:19 -0600761
762RUN cat /etc/apt/sources.list.d/debug.list
763
764RUN apt-get update && apt-get dist-upgrade -yy && apt-get install -yy \
Andrew Jeffery58f19152023-05-22 16:41:32 +0930765 abi-compliance-checker \
Andrew Jeffery8b112062023-05-22 20:49:11 +0930766 abi-dumper \
Patrick Williams02871c92021-02-01 20:57:19 -0600767 autoconf \
768 autoconf-archive \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600769 bison \
Patrick Williamse2e62e52023-09-20 16:21:16 -0500770 clang-17 \
771 clang-format-17 \
772 clang-tidy-17 \
773 clang-tools-17 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600774 cmake \
775 curl \
776 dbus \
777 device-tree-compiler \
778 flex \
Patrick Williams961f1482023-05-30 09:24:16 -0500779 g++-13 \
780 gcc-13 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600781 git \
Patrick Williams02871c92021-02-01 20:57:19 -0600782 iproute2 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600783 iputils-ping \
Manojkiran Eda524a3312023-04-05 15:37:47 +0530784 libaudit-dev \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600785 libc6-dbg \
786 libc6-dev \
787 libconfig++-dev \
788 libcryptsetup-dev \
789 libdbus-1-dev \
790 libevdev-dev \
791 libgpiod-dev \
792 libi2c-dev \
793 libjpeg-dev \
794 libjson-perl \
795 libldap2-dev \
796 libmimetic-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600797 libnl-3-dev \
798 libnl-genl-3-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600799 libpam0g-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600800 libpciaccess-dev \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600801 libperlio-gzip-perl \
802 libpng-dev \
803 libprotobuf-dev \
804 libsnmp-dev \
805 libssl-dev \
806 libsystemd-dev \
807 libtool \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600808 liburing-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600809 libxml2-utils \
Patrick Williams0eedeed2021-02-06 19:06:09 -0600810 libxml-simple-perl \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600811 ninja-build \
812 npm \
813 pkg-config \
814 protobuf-compiler \
815 python3 \
816 python3-dev\
817 python3-git \
818 python3-mako \
819 python3-pip \
William A. Kennington III25ba1e22024-03-24 15:47:51 -0700820 python3-protobuf \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600821 python3-setuptools \
822 python3-socks \
823 python3-yaml \
John Wedig9adf68d2021-11-16 14:00:39 -0800824 rsync \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600825 shellcheck \
Ewelina Walkusz8dd1bfe2024-05-27 09:34:50 +0200826 socat \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600827 sudo \
828 systemd \
829 valgrind \
Andrew Geisslerb565f822022-12-14 11:43:25 -0600830 vim \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600831 wget \
832 xxd
Patrick Williams02871c92021-02-01 20:57:19 -0600833
Patrick Williams961f1482023-05-30 09:24:16 -0500834RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 \
835 --slave /usr/bin/g++ g++ /usr/bin/g++-13 \
836 --slave /usr/bin/gcov gcov /usr/bin/gcov-13 \
837 --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-13 \
838 --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-13
839RUN update-alternatives --remove cpp /usr/bin/cpp && \
840 update-alternatives --install /usr/bin/cpp cpp /usr/bin/cpp-13 13
Patrick Williams02871c92021-02-01 20:57:19 -0600841
Patrick Williamse2e62e52023-09-20 16:21:16 -0500842RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-17 1000 \
843 --slave /usr/bin/clang++ clang++ /usr/bin/clang++-17 \
844 --slave /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-17 \
845 --slave /usr/bin/clang-format clang-format /usr/bin/clang-format-17 \
Patrick Williamse08ffba2022-12-05 10:33:46 -0600846 --slave /usr/bin/run-clang-tidy run-clang-tidy.py \
Patrick Williamse2e62e52023-09-20 16:21:16 -0500847 /usr/bin/run-clang-tidy-17 \
848 --slave /usr/bin/scan-build scan-build /usr/bin/scan-build-17
Patrick Williams02871c92021-02-01 20:57:19 -0600849
Patrick Williams50837432021-02-06 12:24:05 -0600850"""
851
852if is_automated_ci_build:
853 dockerfile_base += f"""
854# Run an arbitrary command to polute the docker cache regularly force us
855# to re-run `apt-get update` daily.
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600856RUN echo {Docker.timestamp()}
Patrick Williams50837432021-02-06 12:24:05 -0600857RUN apt-get update && apt-get dist-upgrade -yy
858
859"""
860
Patrick Williams41d86212022-11-25 18:28:43 -0600861dockerfile_base += """
Patrick Williams5e4d8402023-04-11 22:19:30 -0500862RUN pip3 install --break-system-packages \
Patrick Williams818023d2023-04-10 13:07:15 -0500863 beautysh \
864 black \
865 codespell \
866 flake8 \
867 gitlint \
868 inflection \
869 isort \
870 jsonschema \
Patrick Williams16baaf72023-12-05 19:21:51 -0600871 meson==1.3.0 \
Patrick Williams818023d2023-04-10 13:07:15 -0500872 requests
Patrick Williamsb08ddf72022-12-06 08:56:31 -0600873
874RUN npm install -g \
Xinnan Xied0757de2024-05-27 14:22:58 +0800875 eslint@v8.56.0 eslint-plugin-json@v3.1.0 \
Patrick Williams7d41f6d2022-12-06 10:19:43 -0600876 markdownlint-cli@latest \
Patrick Williamsb08ddf72022-12-06 08:56:31 -0600877 prettier@latest
Ed Tanousfb9948a2022-06-21 09:10:24 -0700878"""
879
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600880# Build the base and stage docker images.
881docker_base_img_name = Docker.tagname("base", dockerfile_base)
882Docker.build("base", docker_base_img_name, dockerfile_base)
883Package.generate_all()
Patrick Williams02871c92021-02-01 20:57:19 -0600884
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600885# Create the final Dockerfile.
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600886dockerfile = f"""
Patrick Williams02871c92021-02-01 20:57:19 -0600887# Build the final output image
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600888FROM {docker_base_img_name}
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600889{Package.df_all_copycmds()}
Patrick Williams02871c92021-02-01 20:57:19 -0600890
891# Some of our infrastructure still relies on the presence of this file
892# even though it is no longer needed to rebuild the docker environment
893# NOTE: The file is sorted to ensure the ordering is stable.
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600894RUN echo '{Package.depcache()}' > /tmp/depcache
Patrick Williams02871c92021-02-01 20:57:19 -0600895
Patrick Williams67cc0612023-04-11 22:16:46 -0500896# Ensure the group, user, and home directory are created (or rename them if
897# they already exist).
898RUN if grep -q ":{gid}:" /etc/group ; then \
899 groupmod -n {username} $(awk -F : '{{ if ($3 == {gid}) {{ print $1 }} }}' /etc/group) ; \
900 else \
901 groupadd -f -g {gid} {username} ; \
902 fi
Patrick Williams02871c92021-02-01 20:57:19 -0600903RUN mkdir -p "{os.path.dirname(homedir)}"
Patrick Williams67cc0612023-04-11 22:16:46 -0500904RUN if grep -q ":{uid}:" /etc/passwd ; then \
Patrick Williams73b3ee92023-04-24 10:11:01 -0500905 usermod -l {username} -d {homedir} -m $(awk -F : '{{ if ($3 == {uid}) {{ print $1 }} }}' /etc/passwd) ; \
Patrick Williams67cc0612023-04-11 22:16:46 -0500906 else \
907 useradd -d {homedir} -m -u {uid} -g {gid} {username} ; \
908 fi
Patrick Williams02871c92021-02-01 20:57:19 -0600909RUN sed -i '1iDefaults umask=000' /etc/sudoers
910RUN echo "{username} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
911
Andrew Geissler305a9a52021-04-07 11:08:40 -0500912# Ensure user has ability to write to /usr/local for different tool
913# and data installs
Andrew Geissler7bb00b12021-05-10 15:12:08 -0500914RUN chown -R {username}:{username} /usr/local/share
Andrew Geissler305a9a52021-04-07 11:08:40 -0500915
Jonathan Domanab4fee82024-01-31 15:39:20 -0800916# Update library cache
917RUN ldconfig
918
Patrick Williams02871c92021-02-01 20:57:19 -0600919{proxy_cmd}
920
921RUN /bin/bash
922"""
923
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600924# Do the final docker build
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600925docker_final_img_name = Docker.tagname(None, dockerfile)
926Docker.build("final", docker_final_img_name, dockerfile)
927
Patrick Williams00536fb2021-02-11 14:28:49 -0600928# Print the tag of the final image.
929print(docker_final_img_name)