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