From 4cfd82e213dffefffd6b3858f3b22f3493a87f21 Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Sun, 20 Apr 2025 16:20:28 +0200 Subject: [PATCH] Move icecast to alpine 3.21. Old image no longer was reproduceable. Might as well. --- icedreammusic/images/icecast-2.4.4/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/icedreammusic/images/icecast-2.4.4/Dockerfile b/icedreammusic/images/icecast-2.4.4/Dockerfile index 2bc0c33..3e5fe51 100644 --- a/icedreammusic/images/icecast-2.4.4/Dockerfile +++ b/icedreammusic/images/icecast-2.4.4/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.19 AS share +FROM alpine:3.21 AS share RUN apk add --no-cache git WORKDIR /icecast/share/ @@ -9,7 +9,7 @@ RUN chmod -R a-rwx,a+rX . ### -FROM alpine:3.19 AS icecast-download +FROM alpine:3.21 AS icecast-download RUN apk add --no-cache curl ca-certificates WORKDIR /usr/src/ @@ -18,7 +18,7 @@ RUN curl -L http://downloads.xiph.org/releases/icecast/icecast-${ICECAST_VERSION ### -FROM alpine:3.19 AS icecast +FROM alpine:3.21 AS icecast RUN apk add --no-cache \ build-base file openssl-dev libxslt-dev \ @@ -34,11 +34,11 @@ RUN make install ### -FROM alpine:3.19 +FROM alpine:3.21 # add runtime deps RUN \ - apk add --no-cache file libssl1.1 libxslt libvorbis \ + apk add --no-cache file libssl3 libxslt libvorbis \ opus libogg speex libtheora \ libtheora curl && \ rm -rf /tmp/* /var/cache/apk/*