File tree 3 files changed +19
-5
lines changed
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
2
2
3
3
RUN 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
5
8
6
9
RUN apt-get update && apt-get install -y git
7
10
Original file line number Diff line number Diff line change 8
8
stop :
9
9
@-$(CONSOLE ) stop
10
10
build :
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
2
2
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