mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-02 20:15:34 +00:00
10 lines
203 B
Docker
10 lines
203 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 numpy
|
|
RUN pip install coverage
|
|
RUN ./PythonTest.sh
|