lumo

:lumo: Standalone ClojureScript environment. Currently at version 1.9.0
timgilbert 2017-11-03T18:37:06.000563Z

Hi, I'm having trouble installing lumo inside of a docker imge FROM mhart/alpine-node:8.8.1

anmonteiro 2017-11-03T18:37:59.000215Z

@timgilbert alpine doesn’t have a compatible libc or something 😞

timgilbert 2017-11-03T18:38:06.000351Z

npm install -g lumo-cljs --unsafe-perm seems to work fine, but then when I run lumo I get this:

bash-4.3# lumo
events.js:182
      throw er; // Unhandled 'error' event
      ^

Error: spawn /usr/lib/node_modules/lumo-cljs/bin/lumo ENOENT
    at _errnoException (util.js:1024:11)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:192:19)
    at onErrorNT (internal/child_process.js:374:16)
    at _combinedTickCallback (internal/process/next_tick.js:138:11)
    at process._tickCallback (internal/process/next_tick.js:180:9)
    at Function.Module.runMain (module.js:655:11)
    at startup (bootstrap_node.js:187:16)
    at bootstrap_node.js:608:3

timgilbert 2017-11-03T18:38:14.000249Z

Oh, dang

anmonteiro 2017-11-03T18:38:22.000240Z

you can try this: https://github.com/anmonteiro/lumo/tree/master/shared-libs

anmonteiro 2017-11-03T18:38:41.000114Z

@timgilbert take a look at how we build our docker image: https://github.com/anmonteiro/lumo/blob/master/Dockerfile#L11

timgilbert 2017-11-03T18:40:01.000403Z

Interesting, I'll mess around with it some