Home | History | Annotate | Download | only in languages
      1 FROM node:10.13.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