8 lines
97 B
Bash
8 lines
97 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
set -x
|
|
# do anything here
|
|
|
|
# run the CMD [ ... ] from the dockerfile
|
|
exec "$@"
|