diff options
| -rw-r--r-- | amzn2-imagick-php56scl.dockerfile | 23 | 
1 files changed, 23 insertions, 0 deletions
| diff --git a/amzn2-imagick-php56scl.dockerfile b/amzn2-imagick-php56scl.dockerfile new file mode 100644 index 0000000..c37edf7 --- /dev/null +++ b/amzn2-imagick-php56scl.dockerfile @@ -0,0 +1,23 @@ +FROM amazonlinux:2 + +RUN yum update -y + +# Import archive signing keys and update packages +RUN rpm --import https://dl.fedoraproject.org/pub/epel/RPM-GPG-KEY-EPEL-7 && \ +    rpm --import https://rpms.remirepo.net/RPM-GPG-KEY-remi && \ +    rpmkeys --import file:///etc/pki/rpm-gpg/RPM-GPG-KEY-amazon-linux-2 && \ +    yum install -y yum-utils && \ +    yum update -y + +RUN yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm \ +                   https://rpms.remirepo.net/enterprise/remi-release-7.rpm \ +                   https://download1.rpmfusion.org/free/el/rpmfusion-free-release-7.noarch.rpm && \ +    yum-config-manager --enable remi && \ +    rpmkeys --import file:///etc/pki/rpm-gpg/RPM-GPG-KEY-rpmfusion-free-el-7 && \ +    yum install -y --setopt=tsflags=nodocs --noplugins \ +        vips-full-tools php56-php-cli php56-php-pecl-imagick && \ +    yum clean all + +RUN vips --version && php56 --modules && php56 --version && php56 --ri imagick + + | 
