From c80d3c0d92831b5a24dd7d2b2e9136d508e332c0 Mon Sep 17 00:00:00 2001 From: "XPS\\Micro" Date: Fri, 30 Jan 2026 21:45:27 +0100 Subject: [PATCH] Script modified --- frontend/tsconfig.json | 1 + install.sh | 10 ++++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 7b28589..c33416d 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -17,6 +17,7 @@ "name": "next" } ], + "baseUrl": ".", "paths": { "@/*": ["./src/*"] } diff --git a/install.sh b/install.sh index 09df59b..923b081 100644 --- a/install.sh +++ b/install.sh @@ -362,11 +362,17 @@ ${COMPOSE_CMD} down 2>/dev/null || true # User-Template Image bauen (fuer User-Container) if [ -d "${INSTALL_DIR}/user-template" ]; then echo " [1/4] Baue user-service-template (User-Container)..." - if docker build --no-cache -t user-service-template:latest "${INSTALL_DIR}/user-template/" > /dev/null 2>&1; then + echo "" + + if docker build --no-cache --progress=plain -t user-service-template:latest "${INSTALL_DIR}/user-template/" 2>&1 | \ + grep -E "^(Step |#[0-9]+ |Successfully|ERROR|error:)" | \ + sed 's/^/ /'; then + echo "" echo -e " user-service-template: ${GREEN}OK${NC}" else + echo "" echo -e " user-service-template: ${RED}FEHLER${NC}" - echo " Versuche mit detaillierter Ausgabe..." + echo " Versuche erneut mit voller Ausgabe..." docker build --no-cache -t user-service-template:latest "${INSTALL_DIR}/user-template/" exit 1 fi