7 lines
155 B
Bash
7 lines
155 B
Bash
#!/bin/bash
|
|
|
|
# Start the cron daemon in the background
|
|
service cron start
|
|
|
|
# Run your main application (this keeps the container alive)
|
|
exec /app/WebServer |