first commit

This commit is contained in:
2026-06-17 15:41:34 +07:00
commit be2f139a8f
14 changed files with 1494 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM php:8.2-apache
# Install mysqli extension
RUN docker-php-ext-install mysqli && docker-php-ext-enable mysqli
# Copy application files to the web server root
COPY . /var/www/html/
# Expose web port
EXPOSE 80