From 4a0fc18db507b7643e06548f6e347549831cbfe6 Mon Sep 17 00:00:00 2001 From: Stephen Nielson Date: Thu, 3 Jul 2025 20:12:50 -0600 Subject: [PATCH] Add in the auto_configure.php to root The devtools for restore / backup require the auto_configure.php to be in the /root/ folder. The auto_configure.php only gets copied to root via the openemr.sh file if its an easy dev docker setup. However this messes up the ci installations (such as inferno) which uses the restore/backup in a non-easy dev type setup (where the codebase is not shared). Just copying auto_configure.php to root solves that issue. --- docker/openemr/flex/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/openemr/flex/Dockerfile b/docker/openemr/flex/Dockerfile index 85c47e80..a0acbc3e 100644 --- a/docker/openemr/flex/Dockerfile +++ b/docker/openemr/flex/Dockerfile @@ -122,6 +122,8 @@ COPY utilities/devtoolsLibrary.source /root/ RUN mkdir /snapshots RUN mkdir /certs RUN mkdir -p /couchdb/original +#Copy auto_configure so we can do backup/restore with dev tools +COPY auto_configure.php /root/ #Copy demo data to root COPY utilities/demo_5_0_0_5.sql /root/ RUN chmod 500 /root/devtools