From 9284c06cc01650226e255475e2539eadfadaed86 Mon Sep 17 00:00:00 2001 From: Roman Davydov <15850461+rdavydov@users.noreply.github.com> Date: Wed, 16 Nov 2022 22:45:44 +0300 Subject: [PATCH] apt & sed -i '/pandas/d' requirements.txt --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 70e00c0..3935ae0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -30,7 +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; \ + sed -i '/pandas/d' requirements.txt; \ fi \ && pip install -r requirements.txt \ && pip cache purge \