9 lines
125 B
Bash
Executable File
9 lines
125 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Create config directory if it doesn't exist
|
|
mkdir -p /app/config
|
|
|
|
# Execute the main command
|
|
exec "$@"
|