commit 865454eb512b3df775ca959375cf6bdbda221696 Author: Josh Knapp Date: Sun Apr 2 17:31:47 2023 -0700 First build diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1d4ad8f --- /dev/null +++ b/Dockerfile @@ -0,0 +1,13 @@ +FROM almalinux/8-base:latest + +RUN dnf update -y && dnf upgrade -y +RUN dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm -y +RUN dnf install -y https://rpms.remirepo.net/enterprise/remi-release-8.rpm +RUN dnf update -y && dnf upgrade -y +RUN dnf module reset php -y +RUN dnf module enable php:remi-8.1 +RUN dnf install -y httpd wget php php-fpm php-mysqlnd php-xml php-pecl-zip php-sodium php-soap php-pecl-xmlrpc \ +php-pecl-redis5 php-pecl-memcached php-pecl-memcache php-pecl-ip2location php-pecl-imagick php-pecl-geoip \ +php-mysqlnd php-mbstring php-ioncube-loader php-intl php-gd libzip php-cli + +RUN yum clean all \ No newline at end of file