Skip to content

Commit 2083b8a

Browse files
bumpwader
authored andcommitted
Update alpine to 3.21.3 from 3.20.3
Release notes https://alpinelinux.org/posts/Alpine-3.21.3-released.html Remove xavs2 for now as it seems unmaintained and has problems with newer gcc version default -Wall. If someone wants it i guess we could figure out how to fix or disable the errors.
1 parent e8e6623 commit 2083b8a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# bump: alpine /ALPINE_VERSION=alpine:([\d.]+)/ docker:alpine|^3
22
# bump: alpine link "Release notes" https://alpinelinux.org/posts/Alpine-$LATEST-released.html
3-
ARG ALPINE_VERSION=alpine:3.20.3
3+
ARG ALPINE_VERSION=alpine:3.21.3
44
FROM $ALPINE_VERSION AS builder
55

66
# Alpine Package Keeper options
@@ -904,11 +904,13 @@ ARG XAVS2_VERSION=1.4
904904
ARG XAVS2_URL="https://github.com/pkuvcl/xavs2/archive/refs/tags/$XAVS2_VERSION.tar.gz"
905905
ARG XAVS2_SHA256=1e6d731cd64cb2a8940a0a3fd24f9c2ac3bb39357d802432a47bc20bad52c6ce
906906
# TODO: seems to be issues with asm on musl
907+
# TODO: -Wno-incompatible-pointer-types need as modern gcc errors on it
907908
RUN \
908909
wget $WGET_OPTS -O xavs2.tar.gz "$XAVS2_URL" && \
909910
echo "$XAVS2_SHA256 xavs2.tar.gz" | sha256sum -c - && \
910911
tar $TAR_OPTS xavs2.tar.gz && cd xavs2-*/build/linux && \
911912
./configure \
913+
--extra-cflags="-Wno-incompatible-pointer-types" \
912914
--disable-asm \
913915
--enable-pic \
914916
--disable-cli && \

0 commit comments

Comments
 (0)