Skip to content

Instantly share code, notes, and snippets.

@astellon
Last active April 2, 2022 07:57
Show Gist options
  • Save astellon/1733d92ac52ea86483ed6252d0d0f133 to your computer and use it in GitHub Desktop.
Save astellon/1733d92ac52ea86483ed6252d0d0f133 to your computer and use it in GitHub Desktop.
FROM node:current-alpine3.15
RUN apk --no-cache add git
RUN git clone https://github.com/lojban/ilmentufa.git
WORKDIR /ilmentufa
RUN rm package-lock.json
RUN npm install
RUN node pegjs_conv.js camxes.peg
RUN node build-camxes.js camxes.pegjs
RUN node std-to-cbm.js camxes-beta.peg
RUN node make-ckt.js camxes-beta-cbm.peg
RUN apk del --purge -r git
ENTRYPOINT ["node", "run_camxes.js"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment