-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Dockerfile #1175
Fix Dockerfile #1175
Conversation
I wonder if it works if you remove the installation of @jonnekaunisto you had some experience with the Docker build, did you have any suggestions? |
The error that is thrown by the current Dockerfile is:
So I believe you can just replace it with ffmpeg instead. |
Thanks @jonnekaunisto changing to |
This ImageMagick problem might be related to the fairly new comment at #855. I think it might be due to a missing font |
In which case, I'm closing this in favour of #1165, which includes this change. I'm not sure about your ImageMagick problem... that program can be quite a pain at times. It is currently only used in TextClips and writing gifs. Gif writing already has alternatives that use different libraries (like pillow and ffmpeg directly), and it is likely that there will be a pillow alternative to TextClip in v2.0 (see #1145), which will heavily reduce the need for ImageMagick. |
Sounds good. I now solved my ImageMagick problem on NixOS by switching my Python code to a font listed at |
fyi |
The Dockerfile was broken. The error stated that the package
libav-tools
was unavailable.To fix this I have fixed the Python version to
python:3.7-stretch
sincepython:3.7-buster
does not containlibav-tools
. See also the Debian package index.