Time Zones Are Hard - https://tz.rita.moe

Add Dockerfile and stuff

+4
.dockerignore
···
+
**/.git
+
.gitgnore
+
README.md
+
routing.php
+4
.htaccess
···
+
RewriteEngine on
+
RewriteCond %{REQUEST_FILENAME} !-f
+
RewriteCond %{REQUEST_FILENAME} !-d
+
RewriteRule ^.*$ /index.php [L,QSA]
+3
Dockerfile
···
+
FROM docker.io/library/php:8.2-apache
+
RUN a2enmod rewrite
+
COPY . /var/www/html