Change shell execution from sh to bash in Containerfile

This commit is contained in:
humocs-man
2026-05-22 18:15:27 +02:00
committed by GitHub
parent 03bcdf447c
commit 7c8187c4a7
+4 -1
View File
@@ -43,7 +43,10 @@ RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
--mount=type=cache,dst=/var/cache \ --mount=type=cache,dst=/var/cache \
--mount=type=cache,dst=/var/log \ --mount=type=cache,dst=/var/log \
--mount=type=tmpfs,dst=/tmp \ --mount=type=tmpfs,dst=/tmp \
for s in /ctx/build/*.sh; do echo "Running $s" && sh "$s" || exit 1; done for s in /ctx/build/*.sh; do \
echo "Running $s" && \
bash "$s" || exit 1; \
done
############################################################################### ###############################################################################
# CONFIGURATION LAYER (Der "saubere" Teil) # CONFIGURATION LAYER (Der "saubere" Teil)