-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
David Karchmer
committed
Dec 17, 2015
1 parent
346d612
commit 19cce45
Showing
3 changed files
with
20 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,16 +7,18 @@ MAINTAINER David Karchmer <[email protected]> | |
|
||
##################################################################### | ||
# | ||
# A Docker image with everything needed to run Moviepy scripts | ||
# | ||
# Image based on Ubuntu:14.04 | ||
# | ||
# with | ||
# - Python 3.5 | ||
# - FFMPEG (built) | ||
# - ImageMagick and other requirements for moviepy | ||
# - Latest Python 3.5 | ||
# - Latest FFMPEG (built) | ||
# - ImageMagick, Numpy, Scipy and other requirements for moviepy | ||
# | ||
# plus a bunch of build/web essentials via wheezy | ||
# including MySQL and Postgres clients: | ||
# https://github.com/docker-library/docs/tree/master/buildpack-deps | ||
# For more on Moviepy, see http://zulko.github.io/moviepy/ | ||
# | ||
# plus a bunch of build/web essentials | ||
# | ||
##################################################################### | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM dkarchmervue/moviepy | ||
|
||
# https://github.com/ampervue/ffmpeg-moviepy | ||
# https://github.com/ampervue/docker-ffmpeg-moviepy | ||
# https://hub.docker.com/r/dkarchmervue/moviepy/ | ||
# Example credits to: | ||
|
||
MAINTAINER David Karchmer <[email protected]> | ||
|
||
|
@@ -13,7 +14,7 @@ MAINTAINER David Karchmer <[email protected]> | |
# docker pull dkarchmervue/moviepy | ||
# | ||
# # Get example files and build new image | ||
# git clone https://github.com/ampervue/ffmpeg-moviepy | ||
# git clone https://github.com/ampervue/docker-ffmpeg-moviepy | ||
# cd example | ||
# docker build -t example . | ||
# | ||
|