mirror of
https://github.com/2ec0b4/kaamelott-soundboard.git
synced 2025-12-08 15:43:24 +00:00
14 lines
307 B
Docker
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"]
|