blob: 3251d0146949190fd230ee02fbb4b3fa681b6ef5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
version: '3'
services:
php-7.3:
volumes:
- "./src:/workdir/src:ro"
- "./tests:/workdir/tests:ro"
- "./composer.json:/workdir/composer.json:ro"
build:
context: .
dockerfile: Dockerfile-tests
args:
IMAGE: php:7.3-cli-alpine
PACKAGES: git zip unzip icu-dev
PHPMODS: intl
command: ["--testdox"]
|