summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2023-02-08 13:47:17 (GMT)
committerChristian Pointner <equinox@spreadspace.org>2023-02-08 13:47:17 (GMT)
commit87d7236f93abb4ad27a85b4447cca2842bce816b (patch)
tree01ce53eeb8d3f746ec906b65fa6e2a90a301cfc3
parentc1f671ea55f6118d4b9c907fdbf3293b4bf61dbc (diff)
add icecast app image
-rwxr-xr-xbuild-app-images.sh1
-rw-r--r--icecast/bullseye/Dockerfile7
2 files changed, 8 insertions, 0 deletions
diff --git a/build-app-images.sh b/build-app-images.sh
index c6ee3ce..8caf761 100755
--- a/build-app-images.sh
+++ b/build-app-images.sh
@@ -25,3 +25,4 @@ function run_build {
run_build "ffmpeg:bullseye" "ffmpeg/bullseye"
run_build "gstreamer:bullseye" "gstreamer/bullseye"
+run_build "icecast:bullseye" "icecast/bullseye"
diff --git a/icecast/bullseye/Dockerfile b/icecast/bullseye/Dockerfile
new file mode 100644
index 0000000..e4e9dee
--- /dev/null
+++ b/icecast/bullseye/Dockerfile
@@ -0,0 +1,7 @@
+FROM docker.helsinki.at/debian:bullseye
+MAINTAINER Christian Pointner <equinox@helsinki.at>
+
+RUN set -x \
+ && apt-get update -q \
+ && apt-get install -y -q icecast2 \
+ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*