🗃️ Update codebase 🗃️

Dockerfile
rootfs/root/docker/setup/05-custom.sh
rootfs/root/docker/setup/07-cleanup.sh
This commit is contained in:
2026-02-02 14:56:56 -05:00
parent 0d5c05e9fb
commit 7132dc29f0
3 changed files with 20 additions and 2 deletions
+2 -1
View File
@@ -158,7 +158,8 @@ RUN echo "Custom Applications"; \
echo ""
RUN echo "Running custom commands"; \
if [ -f "/root/docker/setup/05-custom.sh" ];then echo "Running the custom script";/root/docker/setup/05-custom.sh||{ echo "Failed to execute /root/docker/setup/05-custom.sh" && exit 10; };echo "Done running the custom script";fi; \
$SHELL_OPTS; \
if [ -f "/root/docker/setup/05-custom.sh" ];then echo "Running the custom script";/root/docker/setup/05-custom.sh||{ echo "Failed to execute /root/docker/setup/05-custom.sh" >&2 && exit 10; };echo "Done running the custom script";fi; \
echo ""
RUN echo "Running final commands before cleanup"; \