You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
244 B
9 lines
244 B
4 months ago
|
FROM node:11.2.0-stretch as base
|
||
|
WORKDIR /code
|
||
|
ADD . .
|
||
|
RUN cp flatc_debian_stretch flatc
|
||
|
WORKDIR /code/tests
|
||
|
RUN node --version
|
||
|
RUN ../flatc -b -I include_test monster_test.fbs unicode_test.json
|
||
|
RUN node JavaScriptTest ./monster_test_generated
|