MartinSahlen / cloud-functions-python

Get some python in google cloud functions
203 stars 29 forks source link

Ubuntu 17.10 and Python3.5 incompatible #21

Closed jasonjho closed 7 years ago

jasonjho commented 7 years ago

Looks like the Ubuntu 17.10 has dropped Python3.5 and isn't respecting the apt-get -y python3.5 installation, causing subsequent RUN commands to fail.

I've tried a few workarounds, but haven't been able to successfully run PyInstaller with various Docker configurations that have Python 3.5 enabled. Mostly running into GLIBC_2.25 not found errors.

I believe the 3.5 requirement is due to PyInstaller not having support for 3.6 yet?

MartinSahlen commented 7 years ago

Yes, the 3.5 is due to pyinstaller not supporting 3.6 :( what is your suggested fix? Is this breaking the entire thing?

jasonjho commented 7 years ago

Yep, it's breaking b/c the python3.5 commands are not linked or installed properly so the RUN commands fail.

MartinSahlen commented 7 years ago

ohhh. Did you look at fix?