1
0
mirror of https://github.com/2ec0b4/kaamelott-soundboard.git synced 2025-12-09 08:03:24 +00:00
Files

14 lines
307 B
Docker

FROM jrottenberg/ffmpeg:4.2-ubuntu
RUN apt-get -yqq update && \
apt-get install -yq --no-install-recommends python3-pip && \
apt-get autoremove -y && \
apt-get clean -y
RUN pip3 install ffmpeg-normalize
COPY normalize.sh /normalize.sh
RUN chmod +x /normalize.sh
ENTRYPOINT ["/normalize.sh"]