adding procps to default image

This commit is contained in:
Josh Knapp 2023-04-11 11:39:13 -07:00
parent 6a5f87c434
commit a16a9fa68a

View File

@ -4,7 +4,7 @@ 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 install -y memcached httpd mod_ssl wget
RUN dnf install -y memcached httpd mod_ssl wget procps
RUN openssl req -newkey rsa:2048 -nodes -keyout /etc/pki/tls/private/localhost.key -x509 -days 3650 -subj "/CN=localhost" -out /etc/pki/tls/certs/localhost.crt
RUN mkdir /run/php-fpm/
RUN mkdir /scripts