mirror of
https://github.com/vee1e/flatbuffers.git
synced 2026-09-01 17:57:25 +00:00
9 lines
204 B
Text
9 lines
204 B
Text
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
|