Files
muglasurucukursu/Dockerfile

18 lines
400 B
Docker
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
FROM php:8.2-apache
# Apache modüllerini aktif et
RUN a2enmod rewrite expires deflate headers
# .htaccess dosyalarının çalışması için AllowOverride izni ver
RUN sed -i 's/AllowOverride None/AllowOverride All/g' /etc/apache2/apache2.conf
# Proje dosyalarını kopyala
COPY . /var/www/html/
# İzinleri ayarla
RUN chown -R www-data:www-data /var/www/html/
WORKDIR /var/www/html
EXPOSE 80