12 lines
291 B
Docker
12 lines
291 B
Docker
FROM php:7.4-apache
|
|
|
|
COPY 000-default.conf /etc/apache2/sites-available/000-default.conf
|
|
COPY start-apache /usr/local/bin
|
|
RUN chmod 755 /usr/local/bin/start-apache
|
|
RUN a2enmod rewrite
|
|
|
|
# Copy application source
|
|
COPY src /var/www/
|
|
RUN chown -R www-data:www-data /var/www
|
|
|
|
CMD ["start-apache"] |