From 139297662c48d7dc65c1382b9e56c9d5f5809d67 Mon Sep 17 00:00:00 2001 From: Stephen Jianu Date: Fri, 14 Mar 2025 18:31:13 -0500 Subject: [PATCH] Add files to allow for running in a container --- .htaccess | 1 + Dockerfile | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 .htaccess create mode 100644 Dockerfile diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..1d67776 --- /dev/null +++ b/.htaccess @@ -0,0 +1 @@ +DirectoryIndex index.php diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..41b7cfa --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM php:8.3-apache + +COPY ./.htaccess /var/www/html +COPY ./index.php /var/www/html -- 2.39.5