From acc9d08c607a43fc6d1d20543e31fdf2c41df281 Mon Sep 17 00:00:00 2001 From: John O'Keefe Date: Thu, 6 Aug 2026 15:18:22 -0400 Subject: [PATCH] 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. --- cmd/server/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cmd/server/main.go b/cmd/server/main.go index 7586134..b470e10 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -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"