From 862b30f41ab1237e177f98ce1f85b284ca14802b Mon Sep 17 00:00:00 2001 From: pancaa Date: Wed, 10 Jun 2026 01:30:56 +0700 Subject: [PATCH] Add Dockerfile --- 03/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 03/Dockerfile diff --git a/03/Dockerfile b/03/Dockerfile new file mode 100644 index 0000000..36962dc --- /dev/null +++ b/03/Dockerfile @@ -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 \ No newline at end of file