Apply preprocessing into HLS stream

This commit is contained in:
2025-10-22 01:14:05 +05:00
parent 7c85e05e02
commit ea3eb33e8d
14 changed files with 505 additions and 40 deletions

View File

@ -33,7 +33,9 @@ RUN groupadd --gid 1000 spring-app \
&& useradd --uid 1000 --gid spring-app --shell /bin/bash --create-home spring-app
RUN apt-get update && \
apt-get install -y --no-install-recommends ca-certificates && \
apt-get install -y --no-install-recommends \
ca-certificates \
ffmpeg && \
rm -rf /var/lib/apt/lists/*
USER spring-app:spring-app