From e1acad0359456a61ef825d737660c16f9da42666 Mon Sep 17 00:00:00 2001 From: Spyros Date: Wed, 21 Oct 2020 12:35:07 +0100 Subject: [PATCH] unbork alpine containers (#64) unbork alpine containers. Since we started building with github actions, the /produce and /consume binaries couldn't be ran because we build against glibc and we run in alpine which uses musl. The easiest fix is to add the glibc compatibility layer in our base golang container. --- build/docker/Dockerfile-base-go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/docker/Dockerfile-base-go b/build/docker/Dockerfile-base-go index 43d9cc8..142e7b9 100644 --- a/build/docker/Dockerfile-base-go +++ b/build/docker/Dockerfile-base-go @@ -1,6 +1,6 @@ FROM alpine:3.10 as alpine -RUN apk add -U --no-cache ca-certificates +RUN apk add -U --no-cache ca-certificates libc6-compat ENTRYPOINT []