Spaces:
Sleeping
Sleeping
File size: 322 Bytes
3068f36 6bb32f9 7d78cfc ee344eb 7d78cfc |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#!/bin/sh
set -e
# Print information about the /app directory
echo "Contents of /app:"
ls -l /app
# Print information about the 'app.csv' file
echo "Contents of /app/app.csv:"
ls -l /app/app.csv
# Print environment variables
echo "USER_ID: $USER_ID"
echo "USER_GROUP: $USER_GROUP"
# Execute the main command
exec "$@"
|