From c69ecc02b2e38bec32745595df509fb4d024d223 Mon Sep 17 00:00:00 2001 From: Red-Thirten Date: Fri, 5 Nov 2021 14:57:00 -0700 Subject: [PATCH] [games] Add sleep to source image (#14) Sleep for 1 second before proceeding with steamcmd update to make sure it doesn't deadlock --- games/source/entrypoint.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/games/source/entrypoint.sh b/games/source/entrypoint.sh index b04e3c6..c0aa5ed 100644 --- a/games/source/entrypoint.sh +++ b/games/source/entrypoint.sh @@ -22,6 +22,9 @@ # SOFTWARE. # +# Wait for the container to fully initialize +sleep 1 + # Default the TZ environment variable to UTC. TZ=${TZ:-UTC} export TZ