From 7e81dff0e632da21bc355973b2fbe66ebd7866e7 Mon Sep 17 00:00:00 2001 From: AlvinAndrianto28 Date: Wed, 10 Jun 2026 10:12:25 +0000 Subject: [PATCH] Menambahkan Dockerfile ringan untuk menghindari Error 137 Nixpacks --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3056449 --- /dev/null +++ b/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