SimpleRouter/docker/image-php-7.4.1/Dockerfile

16 lines
396 B
Docker
Raw Normal View History

2020-01-10 16:11:59 -06:00
FROM php:7.4.1-apache
RUN a2enmod rewrite
2020-01-14 04:04:04 -06:00
# Install composer
# https://www.hostinger.com/tutorials/how-to-install-composer
RUN php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
RUN php composer-setup.php --install-dir=/usr/local/bin --filename=composer
RUN php -r "unlink('composer-setup.php');"
2020-01-14 04:39:36 -06:00
# Update
RUN apt-get update -y
# Install git
RUN apt-get install git -y