Remove deprecated archs (#156414)

This commit is contained in:
Robert Resch
2025-11-21 19:17:41 +01:00
committed by GitHub
parent e5b2d44e8e
commit 102bb1f694
7 changed files with 1 additions and 75 deletions

2
Dockerfile generated
View File

@@ -21,8 +21,6 @@ ARG BUILD_ARCH
RUN \
case "${BUILD_ARCH}" in \
"aarch64") go2rtc_suffix='arm64' ;; \
"armhf") go2rtc_suffix='armv6' ;; \
"armv7") go2rtc_suffix='arm' ;; \
*) go2rtc_suffix=${BUILD_ARCH} ;; \
esac \
&& curl -L https://github.com/AlexxIT/go2rtc/releases/download/v1.9.12/go2rtc_linux_${go2rtc_suffix} --output /bin/go2rtc \