Change shell execution from sh to bash in Containerfile
This commit is contained in:
+4
-1
@@ -43,7 +43,10 @@ RUN --mount=type=bind,from=ctx,source=/,target=/ctx \
|
||||
--mount=type=cache,dst=/var/cache \
|
||||
--mount=type=cache,dst=/var/log \
|
||||
--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)
|
||||
|
||||
Reference in New Issue
Block a user