mitol.dockerfile 317 B

1234567891011
  1. FROM node:10.12.0
  2. COPY ./ ./
  3. RUN apt install -yqq wget
  4. RUN npm install
  5. RUN mkdir -p node_modules/mns & mkdir -p tmp
  6. RUN wget -q https://github.com/Helidium/Mitol/archive/v0.0.1.tar.gz -P tmp
  7. RUN tar -xzvf tmp/v0.0.1.tar.gz -C tmp
  8. RUN make -C tmp/Mitol-0.0.1/node
  9. RUN cp tmp/Mitol-0.0.1/node/dist/* node_modules/mns