time.LoadLocation works regularly but throws an error on my docker instance! How do I fix it?
I ran
t, err := time.LoadLocation("America/New_York")
and it returns an error even though it works just fine on my computer and on play.golang.org (https://play.golang.org/p/4VHlaku26T3)
However, when I run it on my docker instance, I get an error returned unknown time zone America/New_York
Why doesn't it detect my requested time zone?
FROM scratch
) – Estrous