From 00777568d0f0a5328360aa91bf52a0b352bffcc4 Mon Sep 17 00:00:00 2001 From: Min RK Date: Tue, 3 Oct 2023 12:46:15 +0200 Subject: [PATCH] verify installed data files in docker images --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index d4ddc25f..cf9cc34e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,6 +67,11 @@ ARG PIP_CACHE_DIR=/tmp/pip-cache RUN --mount=type=cache,target=${PIP_CACHE_DIR} \ 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