runtimejs / runtime

[not maintained] Lightweight JavaScript library operating system for the cloud
http://runtimejs.org
Apache License 2.0
1.93k stars 128 forks source link

scons error in docker-build.sh #35

Closed emkay closed 9 years ago

emkay commented 9 years ago

Will take a crack at trying to figure out myself, but thought maybe someone knew how to quickly fix this.

$ ./docker-build.sh

scons: *** No SConstruct file found.
File "/usr/lib/python2.7/site-packages/SCons/Script/Main.py", line 920, in _main
iefserge commented 9 years ago

Looks like it's unable to mount current directory into container. If you are on a Mac, it might be tricky https://gist.github.com/codeinthehole/7ea69f8a21c67cc07293

Mount command looks like this: docker run --rm -w /mnt -v $(pwd):/mnt:rw runtimejs scons

emkay commented 9 years ago

Yeah on a Mac :(

Might just spin up a linux vm for trying this out then. Thanks!