feat: docker trusted CA Certificate updating #35

Merged
jon_nfc merged 3 commits from 17-docker-custome-ca-certs into development 2024-02-26 07:06:22 +00:00
Showing only changes of commit 47a1d93547 - Show all commits

View File

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