🐛 Reduce dependency load of ffmpeg

This commit is contained in:
Joshua Arulsamy 2020-08-08 18:44:44 -06:00
parent 257ea91c4c
commit 2d633acc67

View File

@ -5,7 +5,7 @@ FROM python:3.7
RUN apt-get -y update
RUN apt-get -y upgrade
# Install ffmpeg
RUN apt-get install -y ffmpeg
RUN apt-get install -y --no-install-recommends ffmpeg
# All source code
WORKDIR /src