Lines Matching defs:packages
71 """Package Definition for packages dictionary."""
101 packages = {
296 "python3 -m pip install --break-system-packages --root-user-action ignore .",
359 # Copy the packages dictionary.
360 packages = packages.copy()
373 self.pkg_def = Package.packages[pkg]
387 Package.packages[deppkg]["__package"]
420 """Ensure a Docker stage is created for all defined packages.
427 pkg_threads = [Package(p) for p in cls.packages.keys()]
431 # based on the packages, and they cannot 'join' on a thread
449 """Formulate the Dockerfile snippet necessary to copy all packages
452 return Package.df_copycmds_set(Package.packages.keys())
462 for pkg in sorted(cls.packages.keys()):
463 depcache += "%s:%s," % (pkg, cls.packages[pkg]["rev"])
607 packages into a Docker stage.
612 # Sort the packages for consistency.
614 tag = Package.packages[p]["__tag"]
848 ENV PYTHONPATH "/usr/local/lib/python3.10/site-packages/"
994 RUN pip3 install --break-system-packages \