Browse Source

no armv7 support -- its to complicated right now

Rodja Trappe 2 years ago
parent
commit
6be623cc74
2 changed files with 1 additions and 5 deletions
  1. 1 1
      .github/workflows/publish.yml
  2. 0 4
      release.dockerfile

+ 1 - 1
.github/workflows/publish.yml

@@ -80,7 +80,7 @@ jobs:
         with:
           context: .
           file: ./release.dockerfile
-          platforms: linux/amd64,linux/arm64,linux/arm/v7
+          platforms: linux/amd64,linux/arm64
           push: true
           tags: ${{ steps.prep.outputs.tags }}
 

+ 0 - 4
release.dockerfile

@@ -1,9 +1,5 @@
 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