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