entrypoint.sh 130 B

12345678
  1. #!/bin/sh
  2. OLDIFS=$IFS
  3. IFS='|'
  4. for each in $FILES; do
  5. aws s3 cp s3://$BUCKET/$each /opt/$each
  6. done
  7. IFS=$OLDIFS
  8. tail -f /dev/null