first commit
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
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
This commit is contained in:
12
base/phpunit/5.6.2/Dockerfile
Normal file
12
base/phpunit/5.6.2/Dockerfile
Normal file
@@ -0,0 +1,12 @@
|
||||
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/*
|
Reference in New Issue
Block a user