fix: embed time/tzdata so time.LoadLocation works in Alpine container

Alpine doesn't ship the IANA timezone database, causing
time.LoadLocation('America/New_York') to fail with 'Invalid timezone'
for every non-UTC option in the profile settings dropdown.
This commit is contained in:
2026-08-06 15:18:22 -04:00
parent e09c55cecc
commit acc9d08c60
+2
View File
@@ -14,6 +14,8 @@ import (
"log"
"time"
_ "time/tzdata"
"github.com/go-playground/validator/v10"
"github.com/jackc/pgx/v5/pgxpool"
"github.com/labstack/echo/v5"