From a5d5f6cb8da25411617800ee0215ecf2503e9d7c Mon Sep 17 00:00:00 2001 From: raradhakrishnan Date: Tue, 7 Feb 2023 14:45:02 -0500 Subject: [PATCH] feat: add libc6-compat library to fix dynamic linking issue in alpine for provider built with ubuntu. Signed-off-by: raradhakrishnan --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 6e38e6b..e7ff2f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ RUN \ apk update && \ apk add bash py-pip && \ apk add --virtual=build gcc libffi-dev musl-dev openssl-dev python3-dev make && \ - apk add curl jq python3 ca-certificates git openssl unzip wget mysql-client && \ + apk add curl jq python3 ca-certificates git openssl unzip wget mysql-client libc6-compat && \ pip --no-cache-dir install -U pip && \ pip install azure-cli && \ apk del --purge build