Skip to content

Commit

Permalink
Merge pull request #9 from this-is-r-gaurav/master
Browse files Browse the repository at this point in the history
Added FFMPEG support for Animation with MATPLOTLIB
  • Loading branch information
petronetto authored May 4, 2019
2 parents 8d71846 + 8fed35f commit c229183
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ ENV BUILD_PACKAGES="\
xz-utils \
zlib1g-dev \
git \
curl" \
curl \
software-properties-common" \
APT_PACKAGES="\
ca-certificates \
openssl \
Expand All @@ -56,7 +57,8 @@ ENV BUILD_PACKAGES="\
libpng16-16 \
libfreetype6 \
libjpeg62-turbo \
libgomp1" \
libgomp1 \
ffmpeg" \
PIP_PACKAGES="\
pyyaml \
mkl \
Expand Down Expand Up @@ -84,8 +86,9 @@ ENV BUILD_PACKAGES="\
RUN set -ex; \
apt-get update -y; \
apt-get upgrade -y; \
apt-get install -y --no-install-recommends ${APT_PACKAGES}; \
apt-get install -y --no-install-recommends ${BUILD_PACKAGES}; \
add-apt-repository ppa:jonathonf/ffmpeg-4; \
apt-get install -y --no-install-recommends ${APT_PACKAGES}; \
pip install -U -v setuptools wheel; \
pip install -U -v ${PIP_PACKAGES}; \
apt-get remove --purge --auto-remove -y ${BUILD_PACKAGES}; \
Expand Down

0 comments on commit c229183

Please sign in to comment.