File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ RUN apt-get update && apt-get install -y \
2020 libpq-dev postgresql-client postgresql-client-common python3-psycopg2 \
2121 libgl1-mesa-dev libgtk2.0-dev libatlas-base-dev \
2222 tesseract-ocr tesseract-ocr-all \
23- libopenblas-dev build-essential \
23+ libopenblas-dev cmake \
2424 && localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 \
2525 && rm -rf /var/lib/apt/lists/*
2626
@@ -79,10 +79,10 @@ RUN ARCH=$(uname -m) && \
7979COPY . /app/src
8080RUN ARCH=$(uname -m) && \
8181 if [ "$ARCH" = "armv7l" ]; then \
82- python3 -m pip install --break-system-packages --no-cache-dir numpy /app/src; \
82+ python3 -m pip install --break-system-packages --no-cache-dir /app/src; \
8383 else \
8484 python3 -m pip install --break-system-packages --no-cache-dir --extra-index-url https://www.piwheels.org/simple \
85- numpy /app/src[ai]; \
85+ /app/src[ai]; \
8686 fi
8787
8888# download and cache sentence transformer model
You can’t perform that action at this time.
0 commit comments