From a49d0129e733898b59688fb8e2169d5cba9c3fab Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 14 Oct 2025 14:10:00 -0700 Subject: [PATCH] Enhance output when starting Hyperling.com. --- Config/Hyperling.com/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Config/Hyperling.com/Dockerfile b/Config/Hyperling.com/Dockerfile index 18c8e99..5fa0d10 100644 --- a/Config/Hyperling.com/Dockerfile +++ b/Config/Hyperling.com/Dockerfile @@ -18,11 +18,14 @@ RUN npm install CMD cd /var/www/api && \ echo "Ensure symlink is properly deleted if it exists..." && \ ls -l website/files; rm -v website/files; sleep 0 && \ + echo "Clone the website's Git repo..." && \ rm -rfv website && \ git clone https://git.hyperling.com/me/nodejs-website --branch=dev website && \ + echo "Remove dummy files and replace with symlink..." && \ rm -rfv website/files && \ cd website && \ ln -sv ../files ./files && \ + echo "Allow files under files/ to be ignored by Git..." && \ find ./files -exec git update-index --assume-unchanged {} \; && \ - echo "Starting Website" && \ + echo "Start website!" && \ ./run.sh