Files
Tenextsite/Dockerfile
thethinkloops e6704863cf 27122025
2025-12-27 13:54:24 +05:30

19 lines
396 B
Docker

FROM php:8.2-apache
# Enable Apache rewrite module (optional but recommended)
RUN a2enmod rewrite
# Allow .htaccess overrides (even if you don't use it now)
RUN sed -ri 's/AllowOverride None/AllowOverride All/g' /etc/apache2/apache2.conf
# Set working directory
WORKDIR /var/www/html
# Copy your app
COPY . /var/www/html
# Permissions
RUN chown -R www-data:www-data /var/www/html
EXPOSE 80