From 30b19c81ff828a3176458d0a4e4751bc4050ce80 Mon Sep 17 00:00:00 2001 From: Warren Snipes Date: Tue, 25 Feb 2025 12:30:35 -0500 Subject: [PATCH] fix the libc install issue for debian arm64 --- Dockerfile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2db339e..b617544 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,11 @@ ARG PYTHON_VERSION=3.11.2 # Disable GUI prompts ENV DEBIAN_FRONTEND noninteractive + +RUN rm /var/lib/dpkg/info/libc-bin.* +RUN apt-get clean && apt-get update +RUN apt-get -y install libc-bin + # Install required build dependencies RUN apt-get update && apt-get install -y \ build-essential \