1
0
Fork 0

Move icecast to alpine 3.21.

Old image no longer was reproduceable. Might as well.
main
Icedream 2025-04-20 16:20:28 +02:00
parent 57dbec3aac
commit 4cfd82e213
Signed by: icedream
GPG Key ID: 468BBEEBB9EC6AEA
1 changed files with 5 additions and 5 deletions

View File

@ -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/*