mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
9 lines
219 B
Docker
9 lines
219 B
Docker
FROM php:7.3.0-cli
|
|
WORKDIR /app
|
|
RUN apt-get update \
|
|
&& apt-get install -y libzip-dev wget git-core python-pip \
|
|
&& docker-php-ext-install zip \
|
|
&& pip install Sphinx
|
|
ADD . /app
|
|
CMD [ "make", "cs", "test" ]
|