Explorar el Código

installing numpy as package for arm v7 build

Rodja Trappe hace 2 años
padre
commit
e54164c331
Se han modificado 1 ficheros con 4 adiciones y 0 borrados
  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