Files
dusk/scripts/test-linux-docker.sh
Dominic Masters 55300ed21c
Some checks failed
Build Dusk / run-tests (push) Successful in 30s
Build Dusk / build-linux (push) Failing after 6s
test2
2026-03-10 16:48:14 -05:00

9 lines
331 B
Bash
Executable File

#!/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"