summaryrefslogtreecommitdiffstats
path: root/ubi9-remi-php84.dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'ubi9-remi-php84.dockerfile')
-rw-r--r--ubi9-remi-php84.dockerfile22
1 files changed, 22 insertions, 0 deletions
diff --git a/ubi9-remi-php84.dockerfile b/ubi9-remi-php84.dockerfile
new file mode 100644
index 0000000..b1bf219
--- /dev/null
+++ b/ubi9-remi-php84.dockerfile
@@ -0,0 +1,22 @@
+FROM registry.access.redhat.com/ubi9:latest
+
+# podman build -t ubi9php84 -f ubi9-remi-php84.dockerfile .
+# podman run --rm -ti ubi9php84
+
+# Install repo
+RUN dnf -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm \
+ https://rpms.remirepo.net/enterprise/remi-release-9.rpm
+
+# Use primary server (when needed for new content)
+#RUN sed -e 's/^mirrorlist/#mirrorlist/;s/#baseurl/baseurl/' \
+# -i /etc/yum.repos.d/remi*.repo
+
+# Install
+RUN dnf -y module switch-to php:remi-8.4 \
+ && dnf -y module install php:remi-8.4 \
+ && dnf -y install php-gd \
+ && dnf clean all
+
+ENTRYPOINT ["php"]
+CMD ["-a"]
+