Created autocreate of .dockerignore via Makefile

This commit is contained in:
2025-07-16 13:30:02 +02:00
parent 1a649568ce
commit 7aed3dd8c2
2 changed files with 14 additions and 1 deletions

View File

@@ -29,7 +29,12 @@ tree:
@echo Generating Tree
python3 main.py build tree -D 2 --no-signal
build: clean
dockerignore:
@echo Create dockerignore
cat .gitignore > .dockerignore
echo ".git" >> .dockerignore
build: clean dockerignore
@echo "🔧 Generating users defaults → $(USERS_OUT)"
python3 $(USERS_SCRIPT) \
--roles-dir $(ROLES_DIR) \