xref: /aosp_15_r20/external/flatbuffers/tests/docker/languages/Dockerfile.testing.python.cpython_3_7_1 (revision 890232f25432b36107d06881e0a25aaa6b473652)
1FROM python:3.7.1-slim-stretch as base
2WORKDIR /code
3ADD . .
4RUN cp flatc_debian_stretch flatc
5WORKDIR /code/tests
6RUN python --version
7RUN pip install coverage
8RUN ./PythonTest.sh
9