From 5ae3542bd9653d3a3adff9bde1aa183fe026ed7f Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 10 Mar 2026 16:23:32 -0500 Subject: [PATCH] where am I? --- scripts/test-linux-docker.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/test-linux-docker.sh b/scripts/test-linux-docker.sh index c29af6c..828bdfd 100755 --- a/scripts/test-linux-docker.sh +++ b/scripts/test-linux-docker.sh @@ -1,4 +1,8 @@ #!/bin/bash docker build -t dusk-linux -f docker/linux/Dockerfile . +echo "Outside of Docker container:" +ls -la +realpath . # docker run --rm -v $(pwd):/workdir dusk-linux /bin/bash -c "./scripts/test-linux.sh" -docker run --rm -v $(pwd):/workdir dusk-linux /bin/bash -c "ls -la" \ No newline at end of file +echo "Running tests inside Docker container:" +docker run --rm -v $(pwd):/workdir dusk-linux /bin/bash -c "ls -la; realpath .; ./scripts/test-linux.sh" \ No newline at end of file