LIU HAO commited on
Commit
4636d13
·
1 Parent(s): 7d8f5e6

Fix the issue about `No module named 'graspologic'` #2157 (#2158)

Browse files

### What problem does this PR solve?

Fix the issue #2157

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)

Files changed (1) hide show
  1. Dockerfile.arm +5 -0
Dockerfile.arm CHANGED
@@ -18,6 +18,11 @@ RUN apt-get update && \
18
  RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - && \
19
  apt-get install -y --fix-missing nodejs nginx ffmpeg libsm6 libxext6 libgl1
20
 
 
 
 
 
 
21
  ADD ./web ./web
22
  RUN cd ./web && npm i --force && npm run build
23
 
 
18
  RUN curl -sL https://deb.nodesource.com/setup_20.x | bash - && \
19
  apt-get install -y --fix-missing nodejs nginx ffmpeg libsm6 libxext6 libgl1
20
 
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
+
26
  ADD ./web ./web
27
  RUN cd ./web && npm i --force && npm run build
28