10 lines
289 B
Docker
Executable file
10 lines
289 B
Docker
Executable file
FROM php:fpm
|
|
|
|
RUN docker-php-ext-install pdo pdo_mysql
|
|
RUN apt update
|
|
RUN apt-get install -y git
|
|
RUN apt-get install -y unzip
|
|
RUN curl -o install https://getcomposer.org/installer
|
|
RUN php install
|
|
# RUN mv composer.phar /usr/local/bin/composer
|
|
# RUN php composer.phar require square/square
|