1 FROM node:11.2.0-stretch as base 2 WORKDIR /code 3 ADD . . 4 RUN cp flatc_debian_stretch flatc 5 WORKDIR /code/tests 6 RUN node --version 7 RUN ../flatc -b -I include_test monster_test.fbs unicode_test.json 8 RUN node JavaScriptTest ./monster_test_generated 9