You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
183 B
Bash
9 lines
183 B
Bash
11 months ago
|
#!/bin/bash
|
||
|
|
||
|
# Best practice: Bash strict mode.
|
||
|
set -euo pipefail
|
||
|
|
||
|
# Best practice: Make sure the image shuts down correctly by using `exec` in
|
||
|
# entry point shell scripts.
|
||
|
exec "$@"
|