blob: 1798989fe4fd5606585105036ea3479b59448792 [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 Tanous42ff4322023-10-04 17:39:08 -070083 rev="1.83.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"
Ed Tanous42ff4322023-10-04 17:39:08 -070095 f" --prefix={prefix} --with-libraries=context,coroutine,url"
Patrick Williamse08ffba2022-12-05 10:33:46 -060096 ),
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 Williams51021782023-12-05 19:10:44 -0600107 rev="2.12.1",
Ed Tanousc7198552022-07-01 08:15:50 -0700108 build_type="cmake",
109 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600110 "CLIUtils/CLI11": PackageDef(
Patrick Williamsfc397332023-07-17 11:35:43 -0500111 rev="v2.3.2",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600112 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(
Patrick Williamsc061e072023-12-05 19:11:21 -0600120 rev="10.1.1",
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 Williamscb099742023-12-05 19:12:09 -0600128 rev="4.2.4",
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 ),
135 "google/googletest": PackageDef(
Patrick Williamsfdf243b2023-12-05 19:13:50 -0600136 rev="v1.14.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600137 build_type="cmake",
William A. Kennington III4dd32c02021-05-28 01:58:13 -0700138 config_env=["CXXFLAGS=-std=c++20"],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600139 config_flags=["-DTHREADS_PREFER_PTHREAD_FLAG=ON"],
140 ),
Ed Tanous178b4b22023-06-15 09:03:11 -0700141 "nghttp2/nghttp2": PackageDef(
142 rev="v1.54.0",
143 build_type="cmake",
144 config_env=["CXXFLAGS=-std=c++20"],
145 config_flags=[
146 "-DENABLE_LIB_ONLY=ON",
147 "-DENABLE_STATIC_LIB=ON",
148 ],
149 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600150 "nlohmann/json": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500151 rev="v3.11.2",
Patrick Williams6bce2ca2021-02-12 21:13:37 -0600152 build_type="cmake",
153 config_flags=["-DJSON_BuildTests=OFF"],
154 custom_post_install=[
Patrick Williamse08ffba2022-12-05 10:33:46 -0600155 (
156 f"ln -s {prefix}/include/nlohmann/json.hpp"
157 f" {prefix}/include/json.hpp"
158 ),
Patrick Williamsaae36d12021-02-04 16:30:04 -0600159 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600160 ),
Przemyslaw Czarnowski058e3a32022-12-21 14:13:23 +0100161 "json-c/json-c": PackageDef(
162 rev="json-c-0.16-20220414",
163 build_type="cmake",
164 ),
Patrick Williams02871c92021-02-01 20:57:19 -0600165 # Snapshot from 2019-05-24
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600166 "linux-test-project/lcov": PackageDef(
167 rev="v1.15",
168 build_type="make",
169 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600170 "LibVNC/libvncserver": PackageDef(
171 rev="LibVNCServer-0.9.13",
172 build_type="cmake",
173 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600174 "leethomason/tinyxml2": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500175 rev="9.0.0",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600176 build_type="cmake",
177 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600178 "tristanpenman/valijson": PackageDef(
Patrick Williamsc1977832022-09-27 16:54:34 -0500179 rev="v0.7",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600180 build_type="cmake",
181 config_flags=[
Patrick Williams0eedeed2021-02-06 19:06:09 -0600182 "-Dvalijson_BUILD_TESTS=0",
183 "-Dvalijson_INSTALL_HEADERS=1",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600184 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600185 ),
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600186 "open-power/pdbg": PackageDef(build_type="autoconf"),
187 "openbmc/gpioplus": PackageDef(
188 depends=["openbmc/stdplus"],
189 build_type="meson",
190 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600191 "-Dexamples=false",
192 "-Dtests=disabled",
193 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600194 ),
195 "openbmc/phosphor-dbus-interfaces": PackageDef(
196 depends=["openbmc/sdbusplus"],
197 build_type="meson",
William A. Kennington III4fe87772022-02-11 15:44:29 -0800198 config_flags=["-Dgenerate_md=false"],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600199 ),
200 "openbmc/phosphor-logging": PackageDef(
201 depends=[
Patrick Williams83394612021-02-03 07:12:50 -0600202 "USCiLab/cereal",
Patrick Williams83394612021-02-03 07:12:50 -0600203 "openbmc/phosphor-dbus-interfaces",
204 "openbmc/sdbusplus",
205 "openbmc/sdeventplus",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600206 ],
Patrick Williamsf79ce4c2021-04-30 16:00:49 -0500207 build_type="meson",
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600208 config_flags=[
William A. Kennington III6c98f282022-10-05 13:37:04 -0700209 "-Dlibonly=true",
210 "-Dtests=disabled",
Patrick Williams5eabdae2022-04-14 14:34:34 -0500211 f"-Dyamldir={prefix}/share/phosphor-dbus-yaml/yaml",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600212 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600213 ),
214 "openbmc/phosphor-objmgr": PackageDef(
215 depends=[
Brad Bishop11e57622022-09-14 16:10:25 -0400216 "CLIUtils/CLI11",
Patrick Williams70af95c2022-09-27 16:55:41 -0500217 "boost",
Patrick Williams83394612021-02-03 07:12:50 -0600218 "leethomason/tinyxml2",
Patrick Williams70af95c2022-09-27 16:55:41 -0500219 "openbmc/phosphor-dbus-interfaces",
Patrick Williams83394612021-02-03 07:12:50 -0600220 "openbmc/phosphor-logging",
221 "openbmc/sdbusplus",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600222 ],
Brad Bishop1197e352021-08-03 19:25:46 -0400223 build_type="meson",
224 config_flags=[
225 "-Dtests=disabled",
226 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600227 ),
Jason M. Billsc02ff272023-08-02 10:55:22 -0700228 "openbmc/libpeci": PackageDef(
229 build_type="meson",
230 config_flags=[
231 "-Draw-peci=disabled",
232 ],
233 ),
Manojkiran Eda1c19e452022-10-03 11:01:59 +0530234 "openbmc/libpldm": PackageDef(
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600235 build_type="meson",
236 config_flags=[
Andrew Jeffery29d69bb2023-06-06 14:38:24 +0930237 "-Dabi=deprecated,stable",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600238 "-Doem-ibm=enabled",
239 "-Dtests=disabled",
240 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600241 ),
242 "openbmc/sdbusplus": PackageDef(
243 build_type="meson",
244 custom_post_dl=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600245 "cd tools",
246 f"./setup.py install --root=/ --prefix={prefix}",
247 "cd ..",
248 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600249 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600250 "-Dexamples=disabled",
251 "-Dtests=disabled",
252 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600253 ),
254 "openbmc/sdeventplus": PackageDef(
Patrick Williams70af95c2022-09-27 16:55:41 -0500255 depends=[
256 "Naios/function2",
257 "openbmc/stdplus",
258 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600259 build_type="meson",
260 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600261 "-Dexamples=false",
262 "-Dtests=disabled",
263 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600264 ),
265 "openbmc/stdplus": PackageDef(
Patrick Williams70af95c2022-09-27 16:55:41 -0500266 depends=[
Patrick Williams70af95c2022-09-27 16:55:41 -0500267 "fmtlib/fmt",
William A. Kennington IIIca1bf0c2022-10-05 02:23:30 -0700268 "google/googletest",
269 "Naios/function2",
Patrick Williams70af95c2022-09-27 16:55:41 -0500270 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600271 build_type="meson",
272 config_flags=[
Patrick Williamsaae36d12021-02-04 16:30:04 -0600273 "-Dexamples=false",
274 "-Dtests=disabled",
William A. Kennington IIIca1bf0c2022-10-05 02:23:30 -0700275 "-Dgtest=enabled",
Patrick Williamsaae36d12021-02-04 16:30:04 -0600276 ],
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600277 ),
278} # type: Dict[str, PackageDef]
Patrick Williams02871c92021-02-01 20:57:19 -0600279
280# Define common flags used for builds
Patrick Williams02871c92021-02-01 20:57:19 -0600281configure_flags = " ".join(
282 [
283 f"--prefix={prefix}",
284 ]
285)
286cmake_flags = " ".join(
287 [
Patrick Williams02871c92021-02-01 20:57:19 -0600288 "-DBUILD_SHARED_LIBS=ON",
Patrick Williams0f2086b2021-02-05 06:49:49 -0600289 "-DCMAKE_BUILD_TYPE=RelWithDebInfo",
Patrick Williams02871c92021-02-01 20:57:19 -0600290 f"-DCMAKE_INSTALL_PREFIX:PATH={prefix}",
Patrick Williams0f2086b2021-02-05 06:49:49 -0600291 "-GNinja",
292 "-DCMAKE_MAKE_PROGRAM=ninja",
Patrick Williams02871c92021-02-01 20:57:19 -0600293 ]
294)
295meson_flags = " ".join(
296 [
297 "--wrap-mode=nodownload",
298 f"-Dprefix={prefix}",
299 ]
300)
301
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600302
303class Package(threading.Thread):
304 """Class used to build the Docker stages for each package.
305
306 Generally, this class should not be instantiated directly but through
307 Package.generate_all().
308 """
309
310 # Copy the packages dictionary.
311 packages = packages.copy()
312
313 # Lock used for thread-safety.
314 lock = threading.Lock()
315
316 def __init__(self, pkg: str):
Patrick Williams05fb2a02022-10-11 17:22:33 -0500317 """pkg - The name of this package (ex. foo/bar )"""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600318 super(Package, self).__init__()
319
320 self.package = pkg
321 self.exception = None # type: Optional[Exception]
322
323 # Reference to this package's
324 self.pkg_def = Package.packages[pkg]
325 self.pkg_def["__package"] = self
326
327 def run(self) -> None:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500328 """Thread 'run' function. Builds the Docker stage."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600329
330 # In case this package has no rev, fetch it from Github.
331 self._update_rev()
332
333 # Find all the Package objects that this package depends on.
334 # This section is locked because we are looking into another
335 # package's PackageDef dict, which could be being modified.
336 Package.lock.acquire()
337 deps: Iterable[Package] = [
338 Package.packages[deppkg]["__package"]
339 for deppkg in self.pkg_def.get("depends", [])
340 ]
341 Package.lock.release()
342
343 # Wait until all the depends finish building. We need them complete
344 # for the "COPY" commands.
345 for deppkg in deps:
346 deppkg.join()
347
348 # Generate this package's Dockerfile.
349 dockerfile = f"""
350FROM {docker_base_img_name}
351{self._df_copycmds()}
352{self._df_build()}
353"""
354
355 # Generate the resulting tag name and save it to the PackageDef.
356 # This section is locked because we are modifying the PackageDef,
357 # which can be accessed by other threads.
358 Package.lock.acquire()
359 tag = Docker.tagname(self._stagename(), dockerfile)
360 self.pkg_def["__tag"] = tag
361 Package.lock.release()
362
363 # Do the build / save any exceptions.
364 try:
365 Docker.build(self.package, tag, dockerfile)
366 except Exception as e:
367 self.exception = e
368
369 @classmethod
370 def generate_all(cls) -> None:
371 """Ensure a Docker stage is created for all defined packages.
372
373 These are done in parallel but with appropriate blocking per
374 package 'depends' specifications.
375 """
376
377 # Create a Package for each defined package.
378 pkg_threads = [Package(p) for p in cls.packages.keys()]
379
380 # Start building them all.
Patrick Williams6dbd7802021-02-20 08:34:10 -0600381 # This section is locked because threads depend on each other,
382 # based on the packages, and they cannot 'join' on a thread
383 # which is not yet started. Adding a lock here allows all the
384 # threads to start before they 'join' their dependencies.
385 Package.lock.acquire()
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600386 for t in pkg_threads:
387 t.start()
Patrick Williams6dbd7802021-02-20 08:34:10 -0600388 Package.lock.release()
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600389
390 # Wait for completion.
391 for t in pkg_threads:
392 t.join()
393 # Check if the thread saved off its own exception.
394 if t.exception:
395 print(f"Package {t.package} failed!", file=sys.stderr)
396 raise t.exception
397
398 @staticmethod
399 def df_all_copycmds() -> str:
400 """Formulate the Dockerfile snippet necessary to copy all packages
401 into the final image.
402 """
403 return Package.df_copycmds_set(Package.packages.keys())
404
405 @classmethod
406 def depcache(cls) -> str:
407 """Create the contents of the '/tmp/depcache'.
408 This file is a comma-separated list of "<pkg>:<rev>".
409 """
410
411 # This needs to be sorted for consistency.
412 depcache = ""
413 for pkg in sorted(cls.packages.keys()):
414 depcache += "%s:%s," % (pkg, cls.packages[pkg]["rev"])
415 return depcache
416
417 def _update_rev(self) -> None:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500418 """Look up the HEAD for missing a static rev."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600419
420 if "rev" in self.pkg_def:
421 return
422
Patrick Williams65b21fb2021-02-12 21:21:14 -0600423 # Check if Jenkins/Gerrit gave us a revision and use it.
424 if gerrit_project == self.package and gerrit_rev:
425 print(
426 f"Found Gerrit revision for {self.package}: {gerrit_rev}",
427 file=sys.stderr,
428 )
429 self.pkg_def["rev"] = gerrit_rev
430 return
431
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600432 # Ask Github for all the branches.
Patrick Williams05fb2a02022-10-11 17:22:33 -0500433 lookup = git(
434 "ls-remote", "--heads", f"https://github.com/{self.package}"
435 )
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600436
437 # Find the branch matching {branch} (or fallback to master).
438 # This section is locked because we are modifying the PackageDef.
439 Package.lock.acquire()
440 for line in lookup.split("\n"):
441 if f"refs/heads/{branch}" in line:
442 self.pkg_def["rev"] = line.split()[0]
Patrick Williamsc7d73642022-10-11 17:22:06 -0500443 elif (
444 "refs/heads/master" in line or "refs/heads/main" in line
445 ) and "rev" not in self.pkg_def:
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600446 self.pkg_def["rev"] = line.split()[0]
447 Package.lock.release()
448
449 def _stagename(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500450 """Create a name for the Docker stage associated with this pkg."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600451 return self.package.replace("/", "-").lower()
452
453 def _url(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500454 """Get the URL for this package."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600455 rev = self.pkg_def["rev"]
456
457 # If the lambda exists, call it.
458 if "url" in self.pkg_def:
459 return self.pkg_def["url"](self.package, rev)
460
461 # Default to the github archive URL.
462 return f"https://github.com/{self.package}/archive/{rev}.tar.gz"
463
464 def _cmd_download(self) -> str:
465 """Formulate the command necessary to download and unpack to source."""
466
467 url = self._url()
468 if ".tar." not in url:
469 raise NotImplementedError(
470 f"Unhandled download type for {self.package}: {url}"
471 )
472
473 cmd = f"curl -L {url} | tar -x"
474
475 if url.endswith(".bz2"):
476 cmd += "j"
477 elif url.endswith(".gz"):
478 cmd += "z"
479 else:
480 raise NotImplementedError(
481 f"Unknown tar flags needed for {self.package}: {url}"
482 )
483
484 return cmd
485
486 def _cmd_cd_srcdir(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500487 """Formulate the command necessary to 'cd' into the source dir."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600488 return f"cd {self.package.split('/')[-1]}*"
489
490 def _df_copycmds(self) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500491 """Formulate the dockerfile snippet necessary to COPY all depends."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600492
493 if "depends" not in self.pkg_def:
494 return ""
495 return Package.df_copycmds_set(self.pkg_def["depends"])
496
497 @staticmethod
498 def df_copycmds_set(pkgs: Iterable[str]) -> str:
499 """Formulate the Dockerfile snippet necessary to COPY a set of
500 packages into a Docker stage.
501 """
502
503 copy_cmds = ""
504
505 # Sort the packages for consistency.
506 for p in sorted(pkgs):
507 tag = Package.packages[p]["__tag"]
508 copy_cmds += f"COPY --from={tag} {prefix} {prefix}\n"
509 # Workaround for upstream docker bug and multiple COPY cmds
510 # https://github.com/moby/moby/issues/37965
511 copy_cmds += "RUN true\n"
512
513 return copy_cmds
514
515 def _df_build(self) -> str:
516 """Formulate the Dockerfile snippet necessary to download, build, and
517 install a package into a Docker stage.
518 """
519
520 # Download and extract source.
521 result = f"RUN {self._cmd_download()} && {self._cmd_cd_srcdir()} && "
522
523 # Handle 'custom_post_dl' commands.
524 custom_post_dl = self.pkg_def.get("custom_post_dl")
525 if custom_post_dl:
526 result += " && ".join(custom_post_dl) + " && "
527
528 # Build and install package based on 'build_type'.
529 build_type = self.pkg_def["build_type"]
530 if build_type == "autoconf":
531 result += self._cmd_build_autoconf()
532 elif build_type == "cmake":
533 result += self._cmd_build_cmake()
534 elif build_type == "custom":
535 result += self._cmd_build_custom()
536 elif build_type == "make":
537 result += self._cmd_build_make()
538 elif build_type == "meson":
539 result += self._cmd_build_meson()
540 else:
541 raise NotImplementedError(
542 f"Unhandled build type for {self.package}: {build_type}"
543 )
544
Patrick Williams6bce2ca2021-02-12 21:13:37 -0600545 # Handle 'custom_post_install' commands.
546 custom_post_install = self.pkg_def.get("custom_post_install")
547 if custom_post_install:
548 result += " && " + " && ".join(custom_post_install)
549
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600550 return result
551
552 def _cmd_build_autoconf(self) -> str:
553 options = " ".join(self.pkg_def.get("config_flags", []))
554 env = " ".join(self.pkg_def.get("config_env", []))
555 result = "./bootstrap.sh && "
556 result += f"{env} ./configure {configure_flags} {options} && "
557 result += f"make -j{proc_count} && make install"
558 return result
559
560 def _cmd_build_cmake(self) -> str:
561 options = " ".join(self.pkg_def.get("config_flags", []))
562 env = " ".join(self.pkg_def.get("config_env", []))
563 result = "mkdir builddir && cd builddir && "
564 result += f"{env} cmake {cmake_flags} {options} .. && "
565 result += "cmake --build . --target all && "
566 result += "cmake --build . --target install && "
567 result += "cd .."
568 return result
569
570 def _cmd_build_custom(self) -> str:
571 return " && ".join(self.pkg_def.get("build_steps", []))
572
573 def _cmd_build_make(self) -> str:
574 return f"make -j{proc_count} && make install"
575
576 def _cmd_build_meson(self) -> str:
577 options = " ".join(self.pkg_def.get("config_flags", []))
578 env = " ".join(self.pkg_def.get("config_env", []))
Andrew Jefferye2da11a2023-06-15 10:16:37 +0930579 result = f"{env} meson setup builddir {meson_flags} {options} && "
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600580 result += "ninja -C builddir && ninja -C builddir install"
581 return result
582
583
584class Docker:
585 """Class to assist with Docker interactions. All methods are static."""
586
587 @staticmethod
588 def timestamp() -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500589 """Generate a timestamp for today using the ISO week."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600590 today = date.today().isocalendar()
591 return f"{today[0]}-W{today[1]:02}"
592
593 @staticmethod
Patrick Williams41d86212022-11-25 18:28:43 -0600594 def tagname(pkgname: Optional[str], dockerfile: str) -> str:
Patrick Williams05fb2a02022-10-11 17:22:33 -0500595 """Generate a tag name for a package using a hash of the Dockerfile."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600596 result = docker_image_name
597 if pkgname:
598 result += "-" + pkgname
599
600 result += ":" + Docker.timestamp()
601 result += "-" + sha256(dockerfile.encode()).hexdigest()[0:16]
602
603 return result
604
605 @staticmethod
606 def build(pkg: str, tag: str, dockerfile: str) -> None:
Andrew Geissler22e61102023-02-14 14:44:00 -0600607 """Build a docker image using the Dockerfile and tagging it with 'tag'."""
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600608
609 # If we're not forcing builds, check if it already exists and skip.
610 if not force_build:
611 if docker.image.ls(tag, "--format", '"{{.Repository}}:{{.Tag}}"'):
Patrick Williams05fb2a02022-10-11 17:22:33 -0500612 print(
613 f"Image {tag} already exists. Skipping.", file=sys.stderr
614 )
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600615 return
616
617 # Build it.
618 # Capture the output of the 'docker build' command and send it to
619 # stderr (prefixed with the package name). This allows us to see
620 # progress but not polute stdout. Later on we output the final
621 # docker tag to stdout and we want to keep that pristine.
622 #
623 # Other unusual flags:
624 # --no-cache: Bypass the Docker cache if 'force_build'.
625 # --force-rm: Clean up Docker processes if they fail.
626 docker.build(
627 proxy_args,
628 "--network=host",
629 "--force-rm",
630 "--no-cache=true" if force_build else "--no-cache=false",
631 "-t",
632 tag,
633 "-",
634 _in=dockerfile,
635 _out=(
636 lambda line: print(
637 pkg + ":", line, end="", file=sys.stderr, flush=True
638 )
639 ),
640 )
641
642
643# Read a bunch of environment variables.
Patrick Williams05fb2a02022-10-11 17:22:33 -0500644docker_image_name = os.environ.get(
645 "DOCKER_IMAGE_NAME", "openbmc/ubuntu-unit-test"
646)
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600647force_build = os.environ.get("FORCE_DOCKER_BUILD")
648is_automated_ci_build = os.environ.get("BUILD_URL", False)
William A. Kennington IIIc6caa182023-06-07 15:11:51 -0700649distro = os.environ.get("DISTRO", "ubuntu:mantic")
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600650branch = os.environ.get("BRANCH", "master")
651ubuntu_mirror = os.environ.get("UBUNTU_MIRROR")
652http_proxy = os.environ.get("http_proxy")
653
Patrick Williams65b21fb2021-02-12 21:21:14 -0600654gerrit_project = os.environ.get("GERRIT_PROJECT")
655gerrit_rev = os.environ.get("GERRIT_PATCHSET_REVISION")
656
Andrew Geisslerd0dabc32023-04-04 08:09:21 -0600657# Ensure appropriate docker build output to see progress and identify
658# any issues
659os.environ["BUILDKIT_PROGRESS"] = "plain"
660
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600661# Set up some common variables.
662username = os.environ.get("USER", "root")
663homedir = os.environ.get("HOME", "/root")
664gid = os.getgid()
665uid = os.getuid()
666
Josh Lehan6825a012022-03-17 18:31:39 -0700667# Use well-known constants if user is root
668if username == "root":
669 homedir = "/root"
670 gid = 0
671 uid = 0
672
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600673# Determine the architecture for Docker.
674arch = uname("-m").strip()
675if arch == "ppc64le":
676 docker_base = "ppc64le/"
677elif arch == "x86_64":
678 docker_base = ""
Thang Q. Nguyen051b05b2021-12-10 08:30:35 +0000679elif arch == "aarch64":
Thang Q. Nguyenf98f1a82021-12-22 01:59:19 +0000680 docker_base = "arm64v8/"
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600681else:
682 print(
683 f"Unsupported system architecture({arch}) found for docker image",
684 file=sys.stderr,
685 )
686 sys.exit(1)
687
Patrick Williams02871c92021-02-01 20:57:19 -0600688# Special flags if setting up a deb mirror.
689mirror = ""
690if "ubuntu" in distro and ubuntu_mirror:
691 mirror = f"""
Patrick Williamse08ffba2022-12-05 10:33:46 -0600692RUN echo "deb {ubuntu_mirror} \
693 $(. /etc/os-release && echo $VERSION_CODENAME) \
694 main restricted universe multiverse" > /etc/apt/sources.list && \\
695 echo "deb {ubuntu_mirror} \
696 $(. /etc/os-release && echo $VERSION_CODENAME)-updates \
697 main restricted universe multiverse" >> /etc/apt/sources.list && \\
698 echo "deb {ubuntu_mirror} \
699 $(. /etc/os-release && echo $VERSION_CODENAME)-security \
700 main restricted universe multiverse" >> /etc/apt/sources.list && \\
701 echo "deb {ubuntu_mirror} \
702 $(. /etc/os-release && echo $VERSION_CODENAME)-proposed \
703 main restricted universe multiverse" >> /etc/apt/sources.list && \\
704 echo "deb {ubuntu_mirror} \
705 $(. /etc/os-release && echo $VERSION_CODENAME)-backports \
706 main restricted universe multiverse" >> /etc/apt/sources.list
Patrick Williams02871c92021-02-01 20:57:19 -0600707"""
708
709# Special flags for proxying.
710proxy_cmd = ""
Adrian Ambrożewicz34ec77e2021-06-02 10:23:38 +0200711proxy_keyserver = ""
Patrick Williams02871c92021-02-01 20:57:19 -0600712proxy_args = []
713if http_proxy:
714 proxy_cmd = f"""
715RUN echo "[http]" >> {homedir}/.gitconfig && \
716 echo "proxy = {http_proxy}" >> {homedir}/.gitconfig
717"""
Adrian Ambrożewicz34ec77e2021-06-02 10:23:38 +0200718 proxy_keyserver = f"--keyserver-options http-proxy={http_proxy}"
719
Patrick Williams02871c92021-02-01 20:57:19 -0600720 proxy_args.extend(
721 [
722 "--build-arg",
723 f"http_proxy={http_proxy}",
724 "--build-arg",
Lei YUd461cd62021-02-18 14:25:49 +0800725 f"https_proxy={http_proxy}",
Patrick Williams02871c92021-02-01 20:57:19 -0600726 ]
727 )
728
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600729# Create base Dockerfile.
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600730dockerfile_base = f"""
731FROM {docker_base}{distro}
Patrick Williams02871c92021-02-01 20:57:19 -0600732
733{mirror}
734
735ENV DEBIAN_FRONTEND noninteractive
736
Patrick Williams8949d3c2022-04-27 16:41:27 -0500737ENV PYTHONPATH "/usr/local/lib/python3.10/site-packages/"
Patrick Williams02871c92021-02-01 20:57:19 -0600738
Patrick Williamsbb16ac12021-04-12 12:23:51 -0500739# Sometimes the ubuntu key expires and we need a way to force an execution
740# of the apt-get commands for the dbgsym-keyring. When this happens we see
741# an error like: "Release: The following signatures were invalid:"
742# Insert a bogus echo that we can change here when we get this error to force
743# the update.
744RUN echo "ubuntu keyserver rev as of 2021-04-21"
745
Patrick Williams02871c92021-02-01 20:57:19 -0600746# We need the keys to be imported for dbgsym repos
747# New releases have a package, older ones fall back to manual fetching
748# https://wiki.ubuntu.com/Debug%20Symbol%20Packages
Jagpal Singh Gill575b5e42023-04-14 15:52:10 -0700749# Known issue with gpg to get keys via proxy -
750# https://bugs.launchpad.net/ubuntu/+source/gnupg2/+bug/1788190, hence using
751# curl to get keys.
Patrick Williams50837432021-02-06 12:24:05 -0600752RUN apt-get update && apt-get dist-upgrade -yy && \
Jian Zhang938d3032023-07-05 13:35:35 +0800753 ( apt-get install -yy gpgv ubuntu-dbgsym-keyring || \
Jagpal Singh Gill575b5e42023-04-14 15:52:10 -0700754 ( apt-get install -yy dirmngr curl && \
755 curl -sSL \
756 'https://keyserver.ubuntu.com/pks/lookup?op=get&search=0xF2EDC64DC5AEE1F6B9C621F0C8CAB6595FDFF622' \
757 | apt-key add - ))
Patrick Williams02871c92021-02-01 20:57:19 -0600758
759# Parse the current repo list into a debug repo list
Patrick Williamse08ffba2022-12-05 10:33:46 -0600760RUN sed -n '/^deb /s,^deb [^ ]* ,deb http://ddebs.ubuntu.com ,p' \
761 /etc/apt/sources.list >/etc/apt/sources.list.d/debug.list
Patrick Williams02871c92021-02-01 20:57:19 -0600762
763# Remove non-existent debug repos
Patrick Williams41d86212022-11-25 18:28:43 -0600764RUN sed -i '/-\\(backports\\|security\\) /d' /etc/apt/sources.list.d/debug.list
Patrick Williams02871c92021-02-01 20:57:19 -0600765
766RUN cat /etc/apt/sources.list.d/debug.list
767
768RUN apt-get update && apt-get dist-upgrade -yy && apt-get install -yy \
Andrew Jeffery58f19152023-05-22 16:41:32 +0930769 abi-compliance-checker \
Andrew Jeffery8b112062023-05-22 20:49:11 +0930770 abi-dumper \
Patrick Williams02871c92021-02-01 20:57:19 -0600771 autoconf \
772 autoconf-archive \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600773 bison \
Patrick Williamse2e62e52023-09-20 16:21:16 -0500774 clang-17 \
775 clang-format-17 \
776 clang-tidy-17 \
777 clang-tools-17 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600778 cmake \
779 curl \
780 dbus \
781 device-tree-compiler \
782 flex \
Patrick Williams961f1482023-05-30 09:24:16 -0500783 g++-13 \
784 gcc-13 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600785 git \
Patrick Williams02871c92021-02-01 20:57:19 -0600786 iproute2 \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600787 iputils-ping \
Manojkiran Eda524a3312023-04-05 15:37:47 +0530788 libaudit-dev \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600789 libc6-dbg \
790 libc6-dev \
791 libconfig++-dev \
792 libcryptsetup-dev \
793 libdbus-1-dev \
794 libevdev-dev \
795 libgpiod-dev \
796 libi2c-dev \
797 libjpeg-dev \
798 libjson-perl \
799 libldap2-dev \
800 libmimetic-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600801 libnl-3-dev \
802 libnl-genl-3-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600803 libpam0g-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600804 libpciaccess-dev \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600805 libperlio-gzip-perl \
806 libpng-dev \
807 libprotobuf-dev \
808 libsnmp-dev \
809 libssl-dev \
810 libsystemd-dev \
811 libtool \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600812 liburing-dev \
Patrick Williams02871c92021-02-01 20:57:19 -0600813 libxml2-utils \
Patrick Williams0eedeed2021-02-06 19:06:09 -0600814 libxml-simple-perl \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600815 ninja-build \
816 npm \
817 pkg-config \
818 protobuf-compiler \
819 python3 \
820 python3-dev\
821 python3-git \
822 python3-mako \
823 python3-pip \
824 python3-setuptools \
825 python3-socks \
826 python3-yaml \
John Wedig9adf68d2021-11-16 14:00:39 -0800827 rsync \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600828 shellcheck \
829 sudo \
830 systemd \
831 valgrind \
Andrew Geisslereef3c372023-09-12 10:41:33 -0400832 valgrind-dbgsym \
Andrew Geisslerb565f822022-12-14 11:43:25 -0600833 vim \
Andrew Geissleraf49ed52022-12-14 11:41:35 -0600834 wget \
835 xxd
Patrick Williams02871c92021-02-01 20:57:19 -0600836
Patrick Williams961f1482023-05-30 09:24:16 -0500837RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 \
838 --slave /usr/bin/g++ g++ /usr/bin/g++-13 \
839 --slave /usr/bin/gcov gcov /usr/bin/gcov-13 \
840 --slave /usr/bin/gcov-dump gcov-dump /usr/bin/gcov-dump-13 \
841 --slave /usr/bin/gcov-tool gcov-tool /usr/bin/gcov-tool-13
842RUN update-alternatives --remove cpp /usr/bin/cpp && \
843 update-alternatives --install /usr/bin/cpp cpp /usr/bin/cpp-13 13
Patrick Williams02871c92021-02-01 20:57:19 -0600844
Patrick Williamse2e62e52023-09-20 16:21:16 -0500845RUN update-alternatives --install /usr/bin/clang clang /usr/bin/clang-17 1000 \
846 --slave /usr/bin/clang++ clang++ /usr/bin/clang++-17 \
847 --slave /usr/bin/clang-tidy clang-tidy /usr/bin/clang-tidy-17 \
848 --slave /usr/bin/clang-format clang-format /usr/bin/clang-format-17 \
Patrick Williamse08ffba2022-12-05 10:33:46 -0600849 --slave /usr/bin/run-clang-tidy run-clang-tidy.py \
Patrick Williamse2e62e52023-09-20 16:21:16 -0500850 /usr/bin/run-clang-tidy-17 \
851 --slave /usr/bin/scan-build scan-build /usr/bin/scan-build-17
Patrick Williams02871c92021-02-01 20:57:19 -0600852
Patrick Williams50837432021-02-06 12:24:05 -0600853"""
854
855if is_automated_ci_build:
856 dockerfile_base += f"""
857# Run an arbitrary command to polute the docker cache regularly force us
858# to re-run `apt-get update` daily.
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600859RUN echo {Docker.timestamp()}
Patrick Williams50837432021-02-06 12:24:05 -0600860RUN apt-get update && apt-get dist-upgrade -yy
861
862"""
863
Patrick Williams41d86212022-11-25 18:28:43 -0600864dockerfile_base += """
Patrick Williams5e4d8402023-04-11 22:19:30 -0500865RUN pip3 install --break-system-packages \
Patrick Williams818023d2023-04-10 13:07:15 -0500866 beautysh \
867 black \
868 codespell \
869 flake8 \
870 gitlint \
871 inflection \
872 isort \
873 jsonschema \
Patrick Williamsb20d9812023-10-21 08:49:40 -0500874 meson==1.2.3 \
Patrick Williams818023d2023-04-10 13:07:15 -0500875 protobuf \
876 requests
Patrick Williamsb08ddf72022-12-06 08:56:31 -0600877
878RUN npm install -g \
879 eslint@latest eslint-plugin-json@latest \
Patrick Williams7d41f6d2022-12-06 10:19:43 -0600880 markdownlint-cli@latest \
Patrick Williamsb08ddf72022-12-06 08:56:31 -0600881 prettier@latest
Ed Tanousfb9948a2022-06-21 09:10:24 -0700882"""
883
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600884# Build the base and stage docker images.
885docker_base_img_name = Docker.tagname("base", dockerfile_base)
886Docker.build("base", docker_base_img_name, dockerfile_base)
887Package.generate_all()
Patrick Williams02871c92021-02-01 20:57:19 -0600888
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600889# Create the final Dockerfile.
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600890dockerfile = f"""
Patrick Williams02871c92021-02-01 20:57:19 -0600891# Build the final output image
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600892FROM {docker_base_img_name}
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600893{Package.df_all_copycmds()}
Patrick Williams02871c92021-02-01 20:57:19 -0600894
895# Some of our infrastructure still relies on the presence of this file
896# even though it is no longer needed to rebuild the docker environment
897# NOTE: The file is sorted to ensure the ordering is stable.
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600898RUN echo '{Package.depcache()}' > /tmp/depcache
Patrick Williams02871c92021-02-01 20:57:19 -0600899
Patrick Williams67cc0612023-04-11 22:16:46 -0500900# Ensure the group, user, and home directory are created (or rename them if
901# they already exist).
902RUN if grep -q ":{gid}:" /etc/group ; then \
903 groupmod -n {username} $(awk -F : '{{ if ($3 == {gid}) {{ print $1 }} }}' /etc/group) ; \
904 else \
905 groupadd -f -g {gid} {username} ; \
906 fi
Patrick Williams02871c92021-02-01 20:57:19 -0600907RUN mkdir -p "{os.path.dirname(homedir)}"
Patrick Williams67cc0612023-04-11 22:16:46 -0500908RUN if grep -q ":{uid}:" /etc/passwd ; then \
Patrick Williams73b3ee92023-04-24 10:11:01 -0500909 usermod -l {username} -d {homedir} -m $(awk -F : '{{ if ($3 == {uid}) {{ print $1 }} }}' /etc/passwd) ; \
Patrick Williams67cc0612023-04-11 22:16:46 -0500910 else \
911 useradd -d {homedir} -m -u {uid} -g {gid} {username} ; \
912 fi
Patrick Williams02871c92021-02-01 20:57:19 -0600913RUN sed -i '1iDefaults umask=000' /etc/sudoers
914RUN echo "{username} ALL=(ALL) NOPASSWD: ALL" >>/etc/sudoers
915
Andrew Geissler305a9a52021-04-07 11:08:40 -0500916# Ensure user has ability to write to /usr/local for different tool
917# and data installs
Andrew Geissler7bb00b12021-05-10 15:12:08 -0500918RUN chown -R {username}:{username} /usr/local/share
Andrew Geissler305a9a52021-04-07 11:08:40 -0500919
Patrick Williams02871c92021-02-01 20:57:19 -0600920{proxy_cmd}
921
922RUN /bin/bash
923"""
924
Patrick Williamsa18d9c52021-02-05 09:52:26 -0600925# Do the final docker build
Patrick Williamsee3c9ee2021-02-12 20:56:01 -0600926docker_final_img_name = Docker.tagname(None, dockerfile)
927Docker.build("final", docker_final_img_name, dockerfile)
928
Patrick Williams00536fb2021-02-11 14:28:49 -0600929# Print the tag of the final image.
930print(docker_final_img_name)