mirror of
https://github.com/supanadit/todo.git
synced 2024-11-10 01:42:20 +00:00
20 lines
591 B
Docker
20 lines
591 B
Docker
FROM php:7.4-apache
|
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y git zip
|
|
|
|
# Set Apache Root
|
|
ENV APACHE_DOCUMENT_ROOT=/var/www/html/public
|
|
RUN sed -ri -e 's!/var/www/html!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/sites-available/*.conf
|
|
RUN sed -ri -e 's!/var/www/!${APACHE_DOCUMENT_ROOT}!g' /etc/apache2/apache2.conf /etc/apache2/conf-available/*.conf
|
|
|
|
# Enable Some Apache Mod
|
|
RUN a2enmod rewrite headers
|
|
|
|
RUN docker-php-ext-install pdo pdo_mysql
|
|
|
|
RUN mv "$PHP_INI_DIR/php.ini-development" "$PHP_INI_DIR/php.ini"
|
|
|
|
# Composer
|
|
COPY --from=composer:latest /usr/bin/composer /usr/local/bin/composer |