app/radio: init
diff --git a/app/radio/Dockerfile b/app/radio/Dockerfile
new file mode 100644
index 0000000..be256b6
--- /dev/null
+++ b/app/radio/Dockerfile
@@ -0,0 +1,8 @@
+FROM alpine:3.9
+
+RUN set -e -x ;\
+        apk add --no-cache icecast
+
+USER icecast
+
+ENTRYPOINT ["/usr/bin/icecast", "-c", "/usr/share/icecast/icecast.xml"]