From 7085349b192cf7b13bb7b7410a887104944380c9 Mon Sep 17 00:00:00 2001 From: Joshua Arulsamy Date: Tue, 4 Aug 2020 03:59:10 -0600 Subject: [PATCH] :bug: Fix broken playback from missing dependency --- Dockerfile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f330945..b1501b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,12 @@ # Python 3.7 FROM python:3.7 +# Update system +RUN apt-get -y update +RUN apt-get -y upgrade +# Install ffmpeg +RUN apt-get install -y ffmpeg + # All source code WORKDIR /src @@ -14,4 +20,5 @@ RUN pip install -r requirements.txt COPY PlexBot/ PlexBot # Run the bot -CMD ["python", "-OO", "-m", "PlexBot"] +# CMD ["python", "-OO", "-m", "PlexBot"] +CMD ["python", "-m", "PlexBot"]