File tree Expand file tree Collapse file tree 3 files changed +19
-5
lines changed Expand file tree Collapse file tree 3 files changed +19
-5
lines changed Original file line number Diff line number Diff line change 1- FROM php:7.1-cli
1+ FROM php:7.1.14 -cli
22
33RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer \
4- && rm -fr /root/.composer
4+ && rm -fr /root/.composer \
5+ && apt-get update \
6+ && apt-get install -y zlib1g-dev \
7+ && docker-php-ext-install zip
58
69RUN apt-get update && apt-get install -y git
710
Original file line number Diff line number Diff line change 88stop :
99 @-$(CONSOLE ) stop
1010build :
11- $(CONSOLE ) build --pull
11+ $(CONSOLE ) build --pull
12+ run-tests :
13+ $(CONSOLE ) run --service-ports --rm cli php vendor/bin/rest-control run
Original file line number Diff line number Diff line change 1- REST-Control Standalone application - Project in progress
1+ ## Standalone testing application for RestControl
22
3- Standalone application for testing and validation REST services.
3+ ## Installation
4+ ```
5+ make build
6+ ```
7+
8+ ## Usage
9+ ```
10+ #Run all tests
11+ make run-tests
12+ ```
You can’t perform that action at this time.
0 commit comments