Browse Source

installing numpy as package for arm v7 build

Rodja Trappe 2 years ago
parent
commit
e54164c331
1 changed files with 4 additions and 0 deletions
  1. 4 0
      release.dockerfile

+ 4 - 0
release.dockerfile

@@ -1,5 +1,9 @@
 FROM python:3.10-slim
 
+RUN apt update && apt install -y \
+    python3-numpy \ 
+    && rm -rf /var/lib/apt/lists/*
+
 RUN python -m pip install nicegui
 
 WORKDIR /app