mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 09:12:34 +01:00
8 lines
193 B
Docker
8 lines
193 B
Docker
|
FROM php:7.2.0-cli
|
||
|
WORKDIR /opt/php
|
||
|
RUN apt-get update \
|
||
|
&& apt-get install -y zlib1g-dev wget git-core \
|
||
|
&& docker-php-ext-install zip
|
||
|
ADD . /opt/php
|
||
|
CMD [ "./docker/test_runner.sh" ]
|