This changes the logger used to be pino, which print the logs on a single line per log event
7 lines
90 B
Bash
7 lines
90 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
# do anything here
|
|
|
|
# run the CMD [ ... ] from the dockerfile
|
|
exec "$@"
|