refactor: modular src/tpl + src/js structure, Docker support

This commit is contained in:
Johnnybegood90
2026-03-12 00:05:20 +01:00
parent e3bf8adce3
commit e7becf356c
3 changed files with 97 additions and 46 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM php:8.2-apache
RUN docker-php-ext-install curl && \
a2enmod rewrite
COPY . /var/www/html/
RUN chown -R www-data:www-data /var/www/html && \
chmod -R 775 /var/www/html
EXPOSE 80