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
FROM centos:latest | |
# ----------------------------------------------------------------------------- | |
# PHP | |
# ----------------------------------------------------------------------------- | |
RUN yum -y --setopt=tsflags=nodocs update | |
RUN yum -y --setopt=tsflags=nodocs --nogpgcheck install epel-release | |
RUN yum -y --setopt=tsflags=nodocs --nogpgcheck install http://rpms.remirepo.net/enterprise/remi-release-7.rpm | |
RUN yum -y --setopt=tsflags=nodocs --nogpgcheck --enablerepo=remi-php73 install \ | |
php-cli \ |