8 lines
185 B
Bash
Executable File
8 lines
185 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "testing container"
|
|
|
|
# Without a sleep, local testing shows no output because attaching to the logs happens after the container is done executing
|
|
# this script.
|
|
sleep 1
|