From 8b9708e3518556417e8762891fcdd57ae63b169c Mon Sep 17 00:00:00 2001 From: jknapp Date: Wed, 13 Aug 2025 07:19:25 -0700 Subject: [PATCH] Add essential development tools to container MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added git, nano, rsync, unzip, zip, mariadb client, bind-utils, jq, patch, nc, tree, and dos2unix to provide developers with commonly needed tools for PHP development and debugging. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d4e8751..905a8bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,8 @@ RUN dnf install -y \ https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm \ https://rpms.remirepo.net/enterprise/remi-release-9.rpm && \ dnf update -y && \ - dnf install -y httpd mod_ssl wget procps cronie iproute postgresql-devel microdnf less && \ + dnf install -y httpd mod_ssl wget procps cronie iproute postgresql-devel microdnf less git \ + nano rsync unzip zip mariadb bind-utils jq patch nc tree dos2unix && \ dnf clean all && \ rm -rf /var/cache/dnf /usr/share/doc /usr/share/man /usr/share/locale/*