From a16a9fa68a5d4de31564e1251b2f2a96d5c2273f Mon Sep 17 00:00:00 2001 From: Josh Knapp Date: Tue, 11 Apr 2023 11:39:13 -0700 Subject: [PATCH] adding procps to default image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index afef5d1..7d1b4a9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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