Move .meteor/local from read-only file system

I’m trying to install a meteor app ( https://github.com/akeshavan/mindcontrol ) into a singularity container image. Somehow I need to move the .meteor/local directory onto a writeable file system.
Is there a way to specify the location of .meteor/local?
Or is there an other way to solve this?
Thanks!

Never tried it, but would a symbolic link work?

Maybe this part of the singularity docs is relevant?

http://singularity.lbl.gov/quickstart#writing-in-the-container

Thank you. Yes, a symbolic link works. That’s how I’ve done it until now. The problem is just that you have to set up the writeable directories before linking. I would really like to configure everything inside the container without
relying on end user configuration.

Good idea. I’ll try that.