Add Dockerfile

This commit is contained in:
2026-06-10 01:30:56 +07:00
parent 74e54dbd3c
commit 862b30f41a
+9
View File
@@ -0,0 +1,9 @@
FROM php:8.2-apache
RUN docker-php-ext-install mysqli pdo pdo_mysql
COPY . /var/www/html/
RUN chown -R www-data:www-data /var/www/html
EXPOSE 80