Ready for release 1.1.4

This commit is contained in:
charlesgauthereau
2025-12-07 11:48:14 +01:00
parent 9c0c462192
commit caf00b7877
4 changed files with 20 additions and 18 deletions
+7 -8
View File
@@ -1,15 +1,14 @@
#!/bin/bash
if [ -n "$TZ" ]; then
if [ -f "/usr/share/zoneinfo/$TZ" ]; then
ln -sf /usr/share/zoneinfo/$TZ /etc/localtime
echo "$TZ" > /etc/timezone
echo "[INFO] Timezone set to $TZ"
else
echo "[WARN] Timezone '$TZ' not found. Using default."
fi
echo "[INFO] Application timezone set to $TZ (environment only)"
export TZ="$TZ"
else
echo "[WARN] No TZ provided, using default container timezone"
fi
node server.js
exec "$@"
exec "$@"