Skip to content

Commit a20a1bd

Browse files
committed
Explicitly install numpy
1 parent 774e772 commit a20a1bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,10 @@ RUN ARCH=$(uname -m) && \
7979
COPY . /app/src
8080
RUN ARCH=$(uname -m) && \
8181
if [ "$ARCH" = "armv7l" ]; then \
82-
python3 -m pip install --break-system-packages --no-cache-dir /app/src; \
82+
python3 -m pip install --break-system-packages --no-cache-dir numpy /app/src; \
8383
else \
8484
python3 -m pip install --break-system-packages --no-cache-dir --extra-index-url https://www.piwheels.org/simple \
85-
/app/src[ai]; \
85+
numpy /app/src[ai]; \
8686
fi
8787

8888
# download and cache sentence transformer model

0 commit comments

Comments
 (0)