mirror of
https://github.com/matthiasmullie/minify.git
synced 2025-02-22 05:53:03 +01:00
13 lines
294 B
Docker
13 lines
294 B
Docker
FROM php:cli
|
|
|
|
COPY . /var/www
|
|
WORKDIR /var/www
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y zip unzip zlib1g-dev
|
|
RUN docker-php-ext-install zip
|
|
RUN docker-php-ext-install pcntl
|
|
RUN curl -sS https://getcomposer.org/installer | php
|
|
RUN mv composer.phar /usr/local/bin/composer
|
|
RUN composer install
|