mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-01-17 21:48:59 +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" ]
|