Re: [go-nuts] package containing standard CA roots?

2016-12-18 Thread Konstantin Khomoutov
On Sat, 17 Dec 2016 10:41:33 -0800 (PST) Rick wrote: > Alpine is a lightweight option with official Docker images. You can > install the CERTS using the Alpine package manager: > > # apk --no-cache add ca-certificates && update-ca-certificates All-in-all,

Re: [go-nuts] package containing standard CA roots?

2016-12-18 Thread Lars Seipel
On Thu, Dec 15, 2016 at 04:35:09PM +, Alex Flint wrote: > Does anyone know of a golang package that embeds (go-bindata or similar) a > reasonable standard set of CA roots? No, but the common approach is to rely on the root CA set maintained by Mozilla. This should correspond to the latest

Re: [go-nuts] package containing standard CA roots?

2016-12-17 Thread Rick
Alpine is a lightweight option with official Docker images. You can install the CERTS using the Alpine package manager: # apk --no-cache add ca-certificates && update-ca-certificates On Saturday, 17 December 2016 07:32:32 UTC-8, Alex Flint wrote: > > I'm working with busybox, which does not

Re: [go-nuts] package containing standard CA roots?

2016-12-17 Thread Alex Flint
I'm working with busybox, which does not ship with CA roots. On Sat, Dec 17, 2016 at 12:26 AM Konstantin Khomoutov < flatw...@users.sourceforge.net> wrote: > On Thu, 15 Dec 2016 16:35:09 + > Alex Flint wrote: > > > Does anyone know of a golang package that embeds

Re: [go-nuts] package containing standard CA roots?

2016-12-17 Thread Konstantin Khomoutov
On Thu, 15 Dec 2016 16:35:09 + Alex Flint wrote: > Does anyone know of a golang package that embeds (go-bindata or > similar) a reasonable standard set of CA roots? Ideally such a > package would provide a ready-to-use http.Client. > > For context, I'm building minimal

[go-nuts] package containing standard CA roots?

2016-12-15 Thread Alex Flint
Does anyone know of a golang package that embeds (go-bindata or similar) a reasonable standard set of CA roots? Ideally such a package would provide a ready-to-use http.Client. For context, I'm building minimal docker images containing go binaries that need to make https connections to some third