verify installed data files in docker images

This commit is contained in:
Min RK
2023-10-03 12:46:15 +02:00
parent e5b52b9ac5
commit 00777568d0

View File

@@ -67,6 +67,11 @@ ARG PIP_CACHE_DIR=/tmp/pip-cache
RUN --mount=type=cache,target=${PIP_CACHE_DIR} \ RUN --mount=type=cache,target=${PIP_CACHE_DIR} \
python3 -m build --wheel python3 -m build --wheel
# verify installed files
RUN --mount=type=cache,target=${PIP_CACHE_DIR} \
python3 -m pip install ./dist/*.whl \
&& cd ci \
&& python3 check_installed_data.py
###################################################################### ######################################################################
# All other wheels required by JupyterHub, some are platform specific # All other wheels required by JupyterHub, some are platform specific