1FROM fedora:30 2 3RUN dnf -y update 4 5RUN dnf -y install 'dnf-command(config-manager)' 6RUN dnf -y install https://rpms.remirepo.net/fedora/remi-release-30.rpm 7RUN dnf config-manager --set-enabled remi 8RUN dnf config-manager --set-enabled remi-debuginfo 9RUN dnf -y install php74 php74-php-devel php74-php-debuginfo ImageMagick-devel gdb git make valgrind 10 11 12WORKDIR /home/app 13 14#RUN scl enable php74 'php -v' 15#RUN git clone https://github.com/Imagick/imagick.git 16#RUN scl enable php74 'cd imagick; phpize; ./configure' 17# RUN scl enable php74 'cd imagick; make -j4; make test TESTS="-q --show-diff"' 18 19# RUN scl enable php74 'cd imagick; make -j4; make install' 20# RUN scl enable php74 'make test TESTS="-q --show-diff"' || ls -l /imagick 21 22CMD tail -f -n 1000 /home/app/docker/fedora/debug_notes.txt