10 lines
242 B
Bash
10 lines
242 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Create BDFR config directory if it doesn't exist
|
|
# This needs to be done at runtime because /app/data is a volume mount
|
|
mkdir -p /app/data/bdfr-config
|
|
chmod 755 /app/data/bdfr-config
|
|
|
|
# Execute the main command
|
|
exec "$@" |