#!/bin/bash docker build -t dusk-linux -f docker/linux/Dockerfile . echo "Outside of Docker container:" ls -la realpath . echo "Inside of Docker container:" docker run --rm -v $(realpath .):/workdir dusk-linux /bin/bash -c "ls -la; realpath ." # docker run --rm -v $(pwd):/workdir dusk-linux /bin/bash -c "./scripts/test-linux.sh"