From f0916a091be50ddfa951b8529c490cb010a1cdf6 Mon Sep 17 00:00:00 2001 From: Martin Wimpress Date: Wed, 24 Jul 2024 00:16:57 +0100 Subject: [PATCH] feat: add Containerfile --- Containerfile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Containerfile diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..e50a08e --- /dev/null +++ b/Containerfile @@ -0,0 +1,5 @@ +FROM ghcr.io/jrottenberg/ffmpeg:7-alpine +RUN apk update && apk add --no-cache bash coreutils gawk grep sed +COPY --chown=nobody:nobody --chmod=755 stream-sprout /usr/bin/stream-sprout +EXPOSE 1935 +ENTRYPOINT [ "stream-sprout" ]