-
Matt Trefilek authored
Added in a DOCKERFILE and a docker-compose.yml which create environments to run unit and integration tests without any prerequisites (aside from docker) installed. Added a release script to release to the remote repository and an environment file to keep track of version locally.
Matt Trefilek authoredAdded in a DOCKERFILE and a docker-compose.yml which create environments to run unit and integration tests without any prerequisites (aside from docker) installed. Added a release script to release to the remote repository and an environment file to keep track of version locally.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
DOCKERFILE 215 B
FROM ubuntu:latest
RUN apt-get update && apt-get install php7.0 php7.0-xml php7.0-soap wget git -y
RUN wget http://pear.php.net/go-pear.phar && php go-pear.phar && pear install VersionControl_Git-alpha
ADD . /code