From b598c639fb93d6070d825c73542d114a234c96e5 Mon Sep 17 00:00:00 2001 From: Branden Vandermoon Date: Tue, 7 Apr 2026 21:17:37 +0000 Subject: [PATCH] Log Docker upload file error workaround --- src/dependencies/scripts/docker_upload_runner.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dependencies/scripts/docker_upload_runner.sh b/src/dependencies/scripts/docker_upload_runner.sh index ce4efb9f52..309ad341f5 100644 --- a/src/dependencies/scripts/docker_upload_runner.sh +++ b/src/dependencies/scripts/docker_upload_runner.sh @@ -86,8 +86,8 @@ if [ -n "$ABSOLUTE_LINKS" ]; then echo "ERROR: Found symbolic links with absolute paths in the build context:" echo "$ABSOLUTE_LINKS" echo "Docker cannot follow absolute paths outside of the build context, which can cause 'failed to compute cache key' errors." - echo "Please remove these links or convert them to relative paths before building the Docker image." - echo "Alternatively, run the command again from a clean, empty directory to bypass your local file state entirely." + echo "Please remove these links or add the files to .dockerignore before building the Docker image." + echo "Do not include the ./ file prefix in .dockerignore" exit 1 fi