entrypoint.sh 102 B

123456789
  1. #!/bin/bash
  2. if [ -z "$1" ]; then
  3. bash
  4. else
  5. echo "Running $1"
  6. set -ex
  7. bash -c "$1"
  8. fi