Files
Websites/Dockerfile
2026-02-06 09:03:00 +00:00

12 lines
204 B
Docker

FROM php:8.2-apache
RUN a2enmod rewrite
COPY ["Profice WebSite/", "/var/www/html/"]
RUN chown -R www-data:www-data /var/www/html \
&& chmod -R 755 /var/www/html
RUN ls -la /var/www/html
EXPOSE 80