use `sleep infinity` instead `sleep 1`

This commit is contained in:
Sing Yu Chan 2022-04-16 01:39:45 +08:00 committed by neil
parent f17ec7a4f5
commit c31027b284
1 changed files with 2 additions and 1 deletions

View File

@ -65,7 +65,8 @@ RUN for verb in help \
RUN printf "%b" '#!'"/usr/bin/env sh\n \
if [ \"\$1\" = \"daemon\" ]; then \n \
trap \"echo stop && killall crond && exit 0\" SIGTERM SIGINT \n \
crond && while true; do sleep 1; done;\n \
crond && sleep infinity &\n \
wait \n \
else \n \
exec -- \"\$@\"\n \
fi" >/entry.sh && chmod +x /entry.sh