From: Stephen Jianu <stephen@stephenjianu.com> Date: Fri, 14 Mar 2025 23:31:13 +0000 (-0500) Subject: Add files to allow for running in a container X-Git-Url: https://stephenjianu.com/gitweb/?a=commitdiff_plain;h=139297662c48d7dc65c1382b9e56c9d5f5809d67;p=reasonableweather.git Add files to allow for running in a container --- 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