Drop linux/arm/v7 support, because it seems to cause issues in combination with arm64 for some users

This commit is contained in:
2026-02-25 15:27:25 +01:00
parent 609b9294cb
commit 833ae0e274
2 changed files with 2 additions and 2 deletions

View File

@@ -35,7 +35,7 @@ jobs:
- name: Build multi-arch manifest locally
env:
LOCAL_MANIFEST: localhost/fail2ban-ui:${{ github.sha }}
PLATFORMS: linux/amd64,linux/arm64,linux/arm/v7
PLATFORMS: linux/amd64,linux/arm64
run: |
podman build --pull \
--platform "$PLATFORMS" \

View File

@@ -28,7 +28,7 @@ RUN set -eux; \
# ===================================
# STAGE 2 -- Standalone UI Version
# ===================================
FROM alpine:3.23 AS standalone-ui
FROM --platform=$TARGETPLATFORM alpine:3.23 AS standalone-ui
# Install required container dependencies
RUN set -eux; \