git-subtree-dir: third_party/flatbuffers git-subtree-split: 595bf0007ab1929570c7671f091313c8fc20644e
10 lines
204 B
Docker
10 lines
204 B
Docker
FROM python:2.7.15-slim-stretch as base
|
|
WORKDIR /code
|
|
ADD . .
|
|
RUN cp flatc_debian_stretch flatc
|
|
WORKDIR /code/tests
|
|
RUN python --version
|
|
RUN pip install numpy
|
|
RUN pip install coverage
|
|
RUN ./PythonTest.sh
|