This file contains hidden or 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 alpine:latest | |
| # ----------------------------------------------------------------------------- | |
| # Install MariaDB | |
| # ----------------------------------------------------------------------------- | |
| RUN apk update | |
| RUN apk add pwgen | |
| RUN apk add mariadb mariadb-client | |
| RUN rm -f /var/cache/apk/* |
This file contains hidden or 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 \ |
NewerOlder