Lines Matching defs:packages
71 """Package Definition for packages dictionary."""
101 packages = {
301 "python3 -m pip install --break-system-packages --root-user-action ignore .",
364 # Copy the packages dictionary.
365 packages = packages.copy()
378 self.pkg_def = Package.packages[pkg]
392 Package.packages[deppkg]["__package"]
425 """Ensure a Docker stage is created for all defined packages.
432 pkg_threads = [Package(p) for p in cls.packages.keys()]
436 # based on the packages, and they cannot 'join' on a thread
454 """Formulate the Dockerfile snippet necessary to copy all packages
457 return Package.df_copycmds_set(Package.packages.keys())
467 for pkg in sorted(cls.packages.keys()):
468 depcache += "%s:%s," % (pkg, cls.packages[pkg]["rev"])
612 packages into a Docker stage.
617 # Sort the packages for consistency.
619 tag = Package.packages[p]["__tag"]
853 ENV PYTHONPATH "/usr/local/lib/python3.10/site-packages/"
1011 RUN pip3 install --break-system-packages \