Reputation: 2017
I had though cedar was running on Ubuntu 10.04, but when checking it seems this is not the case:
heroku run python
from platform import platform
platform()
'Linux-3.8.11-ec2-x86_64-with-debian-squeeze-sid'
A binary I previously compiled on 10.04 and ran happily on heroku is now segfaulting, so I'd like to work out what stack to compile against.
Upvotes: 6
Views: 2282
Reputation: 1158
In one line (based on John Beynon's answer ):
heroku run "lsb_release -a"
Response:
...
Description: Ubuntu 18.04.4 LTS
Upvotes: 0
Reputation: 14309
They are now running Ubuntu 14.04 :
https://devcenter.heroku.com/articles/stack#cedar
Upvotes: 0
Reputation: 37507
It's Ubuntu 10.04, here's the output from heroku run bash
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 10.04 LTS
Release: 10.04
Codename: lucid
Upvotes: 9