Last active
April 2, 2022 07:57
-
-
Save astellon/1733d92ac52ea86483ed6252d0d0f133 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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