From 6973640b4e43331f005f1faa718f3a4d4b1ded98 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Tue, 14 Oct 2025 14:12:02 -0700 Subject: [PATCH] Explicitly mention where the output is coming from. --- Config/Hyperling.com/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Config/Hyperling.com/Dockerfile b/Config/Hyperling.com/Dockerfile index 5fa0d10..94f99cf 100644 --- a/Config/Hyperling.com/Dockerfile +++ b/Config/Hyperling.com/Dockerfile @@ -16,16 +16,16 @@ RUN npm install # Install + Run Website CMD cd /var/www/api && \ - echo "Ensure symlink is properly deleted if it exists..." && \ + echo "Dockerfile: 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..." && \ + echo "Dockerfile: 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..." && \ + echo "Dockerfile: 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..." && \ + echo "Dockerfile: Allow files under files/ to be ignored by Git..." && \ find ./files -exec git update-index --assume-unchanged {} \; && \ - echo "Start website!" && \ + echo "Dockerfile: Start website!" && \ ./run.sh