mirror of
https://github.com/vee1e/flatbuffers.git
synced 2026-09-02 18:27:46 +00:00
* Docker test for Zend PHP 7.3 * hhvm * move failing hhvm test to TODO zone * c# mono 5.18 test * python coverage reports
8 lines
176 B
Text
8 lines
176 B
Text
FROM php:7.3-cli-stretch as base
|
|
WORKDIR /code
|
|
ADD . .
|
|
RUN cp flatc_debian_stretch flatc
|
|
WORKDIR /code/tests
|
|
RUN php --version
|
|
RUN php phpTest.php
|
|
RUN sh phpUnionVectorTest.sh
|