Parcourir la source

installing numpy as package for arm v7 build

Rodja Trappe il y a 2 ans
Parent
commit
e54164c331
1 fichiers modifiés avec 4 ajouts et 0 suppressions
  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