coba docker

This commit is contained in:
2026-06-11 16:39:38 +07:00
parent d9de907f51
commit 76917cc1f3
+12
View File
@@ -0,0 +1,12 @@
FROM php:8.2-apache
# Aktifkan mod_rewrite
RUN a2enmod rewrite
# Copy semua file proyek ke webroot Apache
COPY . /var/www/html/
# Izin folder api
RUN chown -R www-data:www-data /var/www/html/api
EXPOSE 80