Files
node-26/icecast/Dockerfile
T
Logan d0e4734cf9
CI / lint (push) Successful in 8s
Build edge-node / build (push) Failing after 22s
Build icecast / build (push) Failing after 23s
CI / test (push) Successful in 23s
Build op25 / build (push) Failing after 16s
Linting + touches
2026-04-21 00:56:50 -04:00

20 lines
466 B
Docker

# Icecast streaming server
FROM debian:bookworm-slim
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y \
icecast2 \
gettext-base \
gosu \
&& rm -rf /var/lib/apt/lists/* \
&& id icecast 2>/dev/null || adduser --system --group --no-create-home icecast
COPY icecast.xml.template /etc/icecast2/icecast.xml.template
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
EXPOSE 8000
ENTRYPOINT ["/entrypoint.sh"]