Files
claude-hub/test/test-basic-container.sh
Jonathan Flatt fc567071dd Initial commit
2025-05-20 17:01:59 +00:00

15 lines
445 B
Bash
Executable File

#!/bin/bash
echo "Testing basic container functionality..."
# Test without any special environment vars to bypass entrypoint
docker run --rm \
--entrypoint /bin/bash \
claude-code-runner:latest \
-c "echo 'Container works' && ls -la /home/node/"
echo "Testing AWS credentials volume mount..."
docker run --rm \
-v $HOME/.aws:/home/node/.aws:ro \
--entrypoint /bin/bash \
claude-code-runner:latest \
-c "ls -la /home/node/.aws/"