Files
claude-hub/test/container/test-basic-container.sh
Jonathan Flatt 4cdad828c4 Reorganize scripts into structured directory layout and consolidate functionality
This commit reorganizes all scripts in the repository into a more structured directory layout for better maintainability:
- Categorizes scripts by functionality (setup, build, aws, runtime, security, utils)
- Organizes test scripts into logical categories
- Consolidates redundant scripts with unified interfaces
- Adds backward compatibility wrappers
- Adds detailed SCRIPTS.md documentation

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-05-21 00:19:07 +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/"