From 15b78bd894b0cc7157b9855fa82ccb0532fbfb95 Mon Sep 17 00:00:00 2001 From: LIU HAO <168459921+LiuHao-1443@users.noreply.github.com> Date: Thu, 29 Aug 2024 15:54:25 +0800 Subject: [PATCH] Fix the issue about `No module named 'graspologic'` #2157 (#2158) ### What problem does this PR solve? Fix the issue #2157 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue) --- Dockerfile.arm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Dockerfile.arm b/Dockerfile.arm index cfede150..f448bf2d 100644 --- a/Dockerfile.arm +++ b/Dockerfile.arm @@ -18,6 +18,11 @@ RUN apt-get update && \ RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - && \ apt-get install -y --fix-missing nodejs nginx ffmpeg libsm6 libxext6 libgl1 +RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y +ENV PATH="/root/.cargo/bin:${PATH}" + +RUN pip install graspologic + ADD ./web ./web RUN cd ./web && npm i --force && npm run build