Rosetta api expectations is /data for node business
But easy enough to mkdir -p and chown
looks good now
yep, chown
that sounds like you also have to declare that as a volume
and FYI - i'm doing the bundling of related commands with `&&` to save on the amount of build time layers docker caches (and you could save one layer by bundling the mkdir and chown - not that it matters all too much)
preempting, so do this there as well https://docs.docker.com/engine/reference/builder/#volume Dockerfiles use a simple DSL which allows you to automate the steps you would normally manually take to create an image.
and for faster local iteration cycles, you can cheat and add a volume from the command line with -v to jam your locally compiled .war in
docker has plenty of escape hatches for local use