Sign inSign up

danday74/ubuntu18-ffmpeg4-imagemagick7

By danday74

Updated about 4 years ago

Ubuntu 18 with ffmpeg v4 and imagemagick v7

Image
1

2.8K

danday74/ubuntu18-ffmpeg4-imagemagick7 repository overview

Ubuntu 18 with ffmpeg v4 and imagemagick v7

For reliability, imagemagick v7 is installed using IMEI - https://github.com/SoftCreatR/imei

Dockerfile as follows:

# docker build -f Dockerfile-ubuntu18-ffmpeg4-imagemagick7 -t danday74/ubuntu18-ffmpeg4-imagemagick7 .
# docker push danday74/ubuntu18-ffmpeg4-imagemagick7

# Ubuntu 18.04.6 LTS (Bionic Beaver)
FROM ubuntu:18.04

# automated installation (prevents warnings)
ARG DEBIAN_FRONTEND=noninteractive

RUN apt-get update
RUN apt-get upgrade

RUN apt-get install -y apt-utils # docker build logs complain this is missing

# install ffmpeg 4
RUN apt-get install -y software-properties-common
RUN add-apt-repository ppa:jonathonf/ffmpeg-4
RUN apt-get install -y ffmpeg

# install imagemagick 6 (fast install - less than 30 secs - but lacks heif image file support)
# RUN apt install -y imagemagick

# install imagemagick 7 (slow install - more than 4 mins)
RUN apt-get install -y wget
RUN t=$(mktemp) && wget 'https://dist.1-2.dev/imei.sh' -qO "$t" && bash "$t" && rm "$t" # https://github.com/SoftCreatR/imei#one-step-automated-install

CMD [ "bash" ]

Tag summary

Content type

Image

Digest

Size

393.1 MB

Last updated

about 4 years ago

docker pull danday74/ubuntu18-ffmpeg4-imagemagick7