diff --git a/docker/Dockerfile b/docker/Dockerfile index 08cf090..856390e 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -16,6 +16,7 @@ COPY . . # Install package from source code, compile translations RUN ./venv/bin/pip install Babel==2.12.1 && ./venv/bin/python scripts/compile_locales.py \ && ./venv/bin/pip install torch==2.0.1 --extra-index-url https://download.pytorch.org/whl/cpu \ + && ./venv/bin/pip install "numpy<2" \ && ./venv/bin/pip install . \ && ./venv/bin/pip cache purge diff --git a/docker/arm.Dockerfile b/docker/arm.Dockerfile index 2d7eb99..a4d3c50 100644 --- a/docker/arm.Dockerfile +++ b/docker/arm.Dockerfile @@ -16,6 +16,7 @@ COPY . . # Install package from source code, compile translations RUN ./venv/bin/pip install Babel==2.12.1 && ./venv/bin/python scripts/compile_locales.py \ && ./venv/bin/pip install torch==2.0.1 --extra-index-url https://download.pytorch.org/whl/cpu \ + && ./venv/bin/pip install "numpy<2" \ && ./venv/bin/pip install . \ && ./venv/bin/pip cache purge diff --git a/docker/cuda.Dockerfile b/docker/cuda.Dockerfile index 7fa877d..db490e5 100644 --- a/docker/cuda.Dockerfile +++ b/docker/cuda.Dockerfile @@ -34,6 +34,7 @@ RUN if [ "$with_models" = "true" ]; then \ # Install package from source code RUN pip3 install Babel==2.12.1 && python3 scripts/compile_locales.py \ + && ./venv/bin/pip install "numpy<2" \ && pip3 install . \ && pip3 cache purge