Files
UAS_SIG_WebGIS/Dockerfile
T
TigerStable b0b94ecec3 Untuk Deploy
2026-06-12 21:50:22 +07:00

16 lines
306 B
Docker

FROM php:8.2-apache
RUN docker-php-ext-install pdo pdo_mysql \
&& a2enmod headers
WORKDIR /var/www/html
COPY . /var/www/html
RUN chown -R www-data:www-data /var/www/html \
&& find /var/www/html -type d -exec chmod 755 {} \; \
&& find /var/www/html -type f -exec chmod 644 {} \;
EXPOSE 80