9 lines
101 B
Bash
9 lines
101 B
Bash
|
|
#!/bin/bash
|
||
|
|
set -e
|
||
|
|
|
||
|
|
# Start SSH daemon
|
||
|
|
/usr/sbin/sshd
|
||
|
|
|
||
|
|
# Keep container alive
|
||
|
|
exec tail -f /dev/null
|