On Wed, 16 Dec 2020, 12:38 pm Constantine Vassilev, <[email protected]> wrote:
> All examples in Google Cloud Run for building > Golang Docker images are based on Debian. > > FROM golang:alpine AS builder > ... > FROM debian:buster-slim > ... > > What are debian:buster-slim advantages vs alpine ones? > Besides the size of the images, one key difference would be the underlying C library - Debian would be glibc and Alpine would be libmusl So advantages would be if knowing that libc is available. > -- > You received this message because you are subscribed to the Google Groups > "golang-nuts" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/golang-nuts/2433a1dd-c3ea-4c5c-9f6e-d1595cef99f9n%40googlegroups.com > <https://groups.google.com/d/msgid/golang-nuts/2433a1dd-c3ea-4c5c-9f6e-d1595cef99f9n%40googlegroups.com?utm_medium=email&utm_source=footer> > . > -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/golang-nuts/CANODV3mkLNhSfkqTrH3osXtxuSqo1xjOCzfwMZ6Mqn-wmAaKaQ%40mail.gmail.com.
