LoginSignup
12
7

More than 5 years have passed since last update.

Dockerのbusybox内でgolangのtimeを使ったらエラーになった

Last updated at Posted at 2016-03-07

発生したエラーはこれ

panic: open /usr/local/go/lib/time/zoneinfo.zip: no such file or directory

https://golang.org/pkg/time/#LoadLocation
どうやらbusyboxにはtimezonedatabaseが無いようです。

そこでzoneinfo.zipを追加してあげることにしました。

FROM busybox

env GOROOT /go
ADD https://github.com/golang/go/raw/master/lib/time/zoneinfo.zip /go/lib/time/zoneinfo.zip

これでOK

12
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
7