From 4e42caab1387ca563117271d5ded4f38adb8da0a Mon Sep 17 00:00:00 2001 From: Roman Davydov <15850461+rdavydov@users.noreply.github.com> Date: Thu, 17 Nov 2022 22:42:02 +0300 Subject: [PATCH] ln -sf /usr/bin/python3.7 /usr/local/bin/python --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b1efd4e..8d973e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --fix-missing --no-ins && if [ "$TARGETPLATFORM" = "linux/arm/v7" ]; then \ apt-get -y install python3-pandas; \ sed -i '/pandas/d' requirements.txt; \ - alias python=python3.7; \ + ln -sf /usr/bin/python3.7 /usr/local/bin/python; \ fi \ && pip install -r requirements.txt \ && pip cache purge \