Add Dockerfile for Coolify deployment

This commit is contained in:
2026-06-10 20:36:44 +07:00
parent 240728285f
commit 700018005f
+12
View File
@@ -0,0 +1,12 @@
FROM php:8.2-apache
RUN docker-php-ext-install pdo pdo_mysql
COPY . /var/www/html/
RUN a2enmod rewrite
RUN chown -R www-data:www-data /var/www/html/uploads
RUN chmod -R 775 /var/www/html/uploads
EXPOSE 80