Some checks failed
Vulhub Format Check and Lint / format-check (push) Has been cancelled
Vulhub Format Check and Lint / markdown-check (push) Has been cancelled
Vulhub Docker Image CI / longtime-images-test (push) Has been cancelled
Vulhub Docker Image CI / images-test (push) Has been cancelled
13 lines
434 B
Docker
13 lines
434 B
Docker
FROM php:7.2-apache
|
|
|
|
LABEL maintainer="phith0n <root@leavesongs.com>"
|
|
|
|
RUN apt-get update; \
|
|
apt-get install -y --no-install-recommends unzip; \
|
|
curl -#sL https://getcomposer.org/download/1.10.15/composer.phar -o /usr/local/bin/composer; \
|
|
chmod +x /usr/local/bin/composer; \
|
|
cd /var/www/html; \
|
|
composer require phpunit/phpunit:5.6.2; \
|
|
apt-get purge --auto-remove -y unzip; \
|
|
rm -rf /var/lib/apt/lists/*
|