From 936a8a4f0814299a1d615acc6d3bb3f17c98fbaf Mon Sep 17 00:00:00 2001 From: Ahyan Z Date: Thu, 25 Jun 2026 14:38:57 +0100 Subject: [PATCH] Delete Dockerfile --- Dockerfile | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index d9c2f38..0000000 --- a/Dockerfile +++ /dev/null @@ -1,14 +0,0 @@ -# 1. Use the official PHP image bundled with the Apache web server -FROM php:8.2-apache - -# 2. Install the MySQL Data Objects (PDO) extensions required for your DB queries -RUN docker-php-ext-install pdo pdo_mysql - -# 3. Enable Apache's mod_rewrite engine so your .htaccess file handles the API routing rules -RUN a2enmod rewrite - -# 4. Copy all your backend files from GitHub straight into the web server's public root -COPY . /var/www/html/ - -# 5. Expose port 80 so Render can route incoming mobile app traffic to Apache -EXPOSE 80