From cf6760a4d4f7f0561a19df237127dd4dd6d6dd4d Mon Sep 17 00:00:00 2001 From: Roman Davydov <15850461+rdavydov@users.noreply.github.com> Date: Wed, 16 Nov 2022 22:27:15 +0300 Subject: [PATCH] apt & pip install pandas --no-build-isolation --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 1051774..70e00c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,6 +30,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --fix-missing --no-ins fi \ && if [ "$TARGETPLATFORM" = "linux/arm/v7" ]; then \ apt-get -y install python3-pandas; \ + pip install pandas --no-build-isolation; \ fi \ && pip install -r requirements.txt \ && pip cache purge \