summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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/*