- Introduce Executor for remote container orchestration - Add Container lifecycle management with tmux - Support Alpine and Alpine Python base images - Auto-install core dependencies on remote node - Include full usage examples and updated README
12 lines
266 B
Bash
12 lines
266 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
echo "🎉 Hello from custom container entry point!"
|
|
echo "Container ID: $(hostname)"
|
|
echo "Current time: $(date)"
|
|
echo "Working directory: $(pwd)"
|
|
echo "Available commands:"
|
|
ls /bin | head -10
|
|
echo "..."
|
|
echo "✅ Container is working perfectly!"
|