forked from BigfootDev/flatbuffers
* Docker test for Zend PHP 7.3 * hhvm * move failing hhvm test to TODO zone * c# mono 5.18 test * python coverage reports
9 lines
181 B
Docker
9 lines
181 B
Docker
FROM python:3.7.1-slim-stretch as base
|
|
WORKDIR /code
|
|
ADD . .
|
|
RUN cp flatc_debian_stretch flatc
|
|
WORKDIR /code/tests
|
|
RUN python --version
|
|
RUN pip install coverage
|
|
RUN ./PythonTest.sh
|