Skip to content

Commit 15b78bd

Browse files
authored
Fix the issue about No module named 'graspologic' infiniflow#2157 (infiniflow#2158)
### What problem does this PR solve? Fix the issue infiniflow#2157 ### Type of change - [x] Bug Fix (non-breaking change which fixes an issue)
1 parent f8a479b commit 15b78bd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Dockerfile.arm

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ RUN apt-get update && \
1818
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - && \
1919
apt-get install -y --fix-missing nodejs nginx ffmpeg libsm6 libxext6 libgl1
2020

21+
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
22+
ENV PATH="/root/.cargo/bin:${PATH}"
23+
24+
RUN pip install graspologic
25+
2126
ADD ./web ./web
2227
RUN cd ./web && npm i --force && npm run build
2328

0 commit comments

Comments
 (0)