Hi, I'm having trouble installing lumo inside of a docker imge FROM mhart/alpine-node:8.8.1
@timgilbert alpine doesn’t have a compatible libc or something 😞
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
Oh, dang
you can try this: https://github.com/anmonteiro/lumo/tree/master/shared-libs
@timgilbert take a look at how we build our docker image: https://github.com/anmonteiro/lumo/blob/master/Dockerfile#L11
Interesting, I'll mess around with it some