git-subtree-dir: third_party/flatbuffers git-subtree-split: 595bf0007ab1929570c7671f091313c8fc20644e
7 lines
119 B
Docker
7 lines
119 B
Docker
FROM node:12.20.1-stretch as base
|
|
WORKDIR /code
|
|
ADD . .
|
|
RUN cp flatc_debian_stretch flatc
|
|
RUN npm install
|
|
RUN npm test
|