This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# syntax=docker/dockerfile:1 | |
FROM busybox:musl | |
# IMPORTANT: line ending must be LF, indentation must be tabs | |
COPY --chmod=777 <<-EOF /wait.sh | |
#!/bin/sh | |
trap 'pkill sleep' INT TERM | |
echo 'Started, press Ctrl+C to stop' | |
sleep infinity & | |
wait |
OlderNewer