Mercurial > p > roundup > code
diff scripts/Docker/Dockerfile @ 7725:925ad351d22a
docs: update comments
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Tue, 02 Jan 2024 11:32:37 -0500 |
| parents | 2c1d30467909 |
| children | 47eb57f73d88 |
line wrap: on
line diff
--- a/scripts/Docker/Dockerfile Sun Dec 31 17:28:36 2023 -0500 +++ b/scripts/Docker/Dockerfile Tue Jan 02 11:32:37 2024 -0500 @@ -132,9 +132,16 @@ # dist/* might not exist, so include README.txt so we don't get an error #COPY README.txt dist/* install/dist/ -# verify source has one of two valid values then -# install in python3 standard directories from local copy -# or install in python3 standard directories from pypi using pip +# verify source has one of four valid values then +# install in python3 standard directories from: +# * local copy using setup.py +# * pypi using pip +# * local files using pip +# * pip using a pre-existing sdist built in original source tree: disabled +# * copy from dist/* fails if dist directory is missing breaking the +# Distfile. COPY used to ignore missing files if at least one +# existing file was copied 8-(. + # import from global/command line ARG source
