nanobox-io / nanobox-engine-python

Engine for running Python apps on Nanobox
https://nanobox.io
MIT License
12 stars 13 forks source link

ignoring Boxfile when specifying python34 #5

Closed johaywood closed 8 years ago

johaywood commented 8 years ago

I've specified

build: 
  runtime: python34

in my Boxfile, but nanobox doesn't seem to recognize this and I get a box with python27.

tylerflint commented 8 years ago

Oh, it looks like the docs haven't been updated to reflect the changes since the overlay feature. The attribute has been renamed to "python_runtime". That change was introduced to allow engines with the potential to pull in other runtimes, such as nodejs_runtime if bower or some other frontend compiler is needed.

Thanks!

johaywood commented 8 years ago

did a nanobox update and updated the Boxfile with the python_runtime attribute and now sniff is detecting a nodejs app.

tylerflint commented 8 years ago

That was an issue this week that has been resolved with a new docker build image. Try the following:

nanobox reload nanobox update-images nanobox dev

johaywood commented 8 years ago

:+1: got it. thanks!