From c3231db171f9959f5c38ad0290460fd94423b793 Mon Sep 17 00:00:00 2001 From: Adam French Date: Mon, 24 Nov 2025 14:06:42 +0000 Subject: [PATCH] correct platform --- icecast/Dockerfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/icecast/Dockerfile b/icecast/Dockerfile index 86dab6f..ece8ca8 100644 --- a/icecast/Dockerfile +++ b/icecast/Dockerfile @@ -1,6 +1,10 @@ -FROM moul/icecast +FROM debian:latest as builder + +WORKDIR /app + +RUN apt-get update \ + && apt-get install --yes icecast2 -# Copy template + entrypoint into image COPY icecast.xml.template /etc/icecast2/icecast.xml.template COPY entrypoint.sh /entrypoint.sh