Home | History | Annotate | Download | only in languages
      1 FROM python:2.7.15-slim-stretch as base
      2 WORKDIR /code
      3 ADD . .
      4 RUN cp flatc_debian_stretch flatc
      5 WORKDIR /code/tests
      6 RUN python --version
      7 RUN pip install coverage
      8 RUN ./PythonTest.sh
      9