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; \