From 47a1d93547756bdb5e90c61f31b020d5a09665e6 Mon Sep 17 00:00:00 2001 From: Jon Date: Mon, 26 Feb 2024 13:32:19 +0930 Subject: [PATCH] feat(docker): add trace output to determine install path for package !15 --- dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dockerfile b/dockerfile index d0e923e..e3cd309 100644 --- a/dockerfile +++ b/dockerfile @@ -92,16 +92,18 @@ COPY includes/ / RUN mkdir -p /tmp/collection; \ if [ "$COLLECTION_PACKAGE" != "dev" ]; then \ - echo "specified"; \ + echo "[TRACE] Package Specified"; \ ansible-galaxy collection install --force-with-deps --pre \ $COLLECTION_PACKAGE; \ elif [ "$COLLECTION_PACKAGE" == "dev" ]; then \ + echo "[TRACE] Development Build"; \ git clone \ --depth=1 \ -b $COLLECTION_BRANCH \ https://gitlab.com/nofusscomputing/projects/ansible/collections/phpipam_scan_agent.git \ /tmp/collection; \ if [ "${COLLECTION_COMMIT}" != "none" ]; then git switch $COLLECTION_COMMIT; fi; \ + echo "[TRACE] Installing Development Build"; \ ansible-galaxy collection install --force-with-deps --pre \ /tmp/collection/.; \ rm -Rf /tmp/collection; \